-
Telnet Client and Server
Hi Everyone
I want to make a client-server program that works like Telnet.
Like sending commands to the server that does a specified action when it gets that command. I know a little on how to use the Winsock Control.
Can anyone help?
How do I go about making this?
-
Well to make a telnet server all you do is listen on port 23 for connections and then figure out what to send/receive.
For a telnet client, you just connect to port 23 and again figure out what to send/receive.
You dont have to use port 23, but its the default/standard.