Originally posted by: JIngguo Ge
Can you give me a example of how to send a article to the bbs board?
ReplyOriginally posted by: Mauricio
Hi Ibrar,
Excellent job!
I’m looking for a Telnet class (or library) which will enable me to send commands to a remote host and get responses as well.
Something like:
…
CTelnet m_telnet;
m_telnet.Connect(host, user, password);
m_telnet.Send(“ls –ltr”);
while(!m_telnet.IsEmpty())
{
cout << m_telnet.GetData() << endl;
m_telnet.GetNext();
}
m_telnet.Close();
…
I will appreciate any help.
Thanks in advance!
Mauricio