Does anyone have, or know of a website where I can get code for a telnet application. I am trying to find a very simple implementation, so that I can modify it for myself.
Printable View
Does anyone have, or know of a website where I can get code for a telnet application. I am trying to find a very simple implementation, so that I can modify it for myself.
Telnet is the most simpliest protocol to implement..
its really a raw data transfer.
whatever you get is what you need to see.
just do the following:
Create a CSocket Object
connect to site
and listen for OnRecieve..
the easiest way of doing it is to create a class derived from CSocket.