Click to See Complete Forum and Search --> : Win32 Telnet App


Pankaj Patel
April 11th, 1999, 01:15 PM
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.

Thomas Rizos
April 11th, 1999, 01:28 PM
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.