CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    32

    Win32 Telnet App

    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.



  2. #2
    Join Date
    May 1999
    Posts
    8

    Re: Win32 Telnet App

    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.



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured