Click here to Skip to main content
Click here to Skip to main content

Telnet server classes

By , 12 Jun 2001
 

Introduction

This article presents two classes: CTelnet and CTelnetSocket, and one global function: TelnetThread. Using the CTelnet class, you can access/control your application remotely using a Telnet client. The download contains the classes to use, and a program to demonstrate the use of the CTelnet class.

CTelnetSocket is a class that is used internally (using Winsock calls). The global TelnetThread function is started as a separate thread. This way your application can run and the TelnetThread does all the Telnet activity. You can register some callback functions which are called by the TelnetThread. Usage is very easy:

Instantiate the CTelnet class:

CTelnet telnet( "Welcome at my telnetserver\r\n"    // intro screen
          , "scott"                               // userid
          , "Enter userid:"                     // userid prompt
          , "tiger"                           // password
          , "Enter password: "              // password prompt
          , "Command >"                   // prompt to use
          , 23 );                       // port to run on

Say, you want a function to be called whenever a user types help. Create a help function like this:

CString help( const CString& sArg );        // help function prototype

// implementation of the help function
CString help( const CString& sArg )
{
    return "\r\nCurrently no commands are implemented\r\n";
}

So this function gets called whenever the user types help (Not case sensitive). It will send data to the client "Currently no commands are implemented". When the user types "help command", sArg will contain the value " command". The next step is to register this (callback) function:

telnet.registerFunction( help , "help" );

You can create as much callback functions as you like. It is also possible to write a callback function that is called whenever the user just presses "enter". Register the function, and leave the second argument empty ("").

The next step is to start the service.

telnet.start();

Now, a user can connect to your application, that's it... Please note that a separate thread is running your Telnet service. So your application can do whatever you want after the start method is called.

Stopping the Telnet server is done by the destructor, or by calling the method stop:

telnet.stop();

When the application is running, you have two methods available: write() and setPrompt(). With the write method, you can write data to the client connected. E.g. it can be used for sending trace data.

telnet.write( "this will be sent to the client connected" );

Please note that this method cannot be used by any of the callback functions (It is not needed anyway, see implementation of callback help function).

Another method that can be called when the Telnet server is running is: setPrompt, which sets the prompt which is presented to the client:

telnet.setPrompt( "Another prompt>" );

Please note that this method cannot be used by any of the callback functions.

Final remarks:

  • For every instantiation of the CTelnet class, only one client can connect, you can however instantiate as many instances of CTelnet as you like.
  • When sharing data between the application and the callback functions (e.g. global variables), make sure you do that thread safe (e.g. using Critical Sections). The sample program which comes with the project files should give an idea on how to do this.
  • Most methods give back a boolean, true means it succeeded, false means it did not succeed. Call getLastError() to get the error that occurred.
  • The Telnet client connected should not do a local echo because the server does that itself.
  • Only backspace is implemented as a text editor command.

Have fun!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

J.Hogendoorn
Netherlands Netherlands
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionTelnet Client?member-= Matt Newman =-17 Nov '01 - 13:28 
Does anyone have a class for a Telnet Client? Win XP came with a console client and can't stand it.
 

-Matt Newman
-Matt Newman


AnswerRe: Telnet Client?memberCyprus27 Nov '01 - 9:46 
I have a Telnet client, it's functional, I guess... It compiles at least. I haven't really gotten a chance to play with it much.
I don't know where I got it, otherwise I'd stick up the URL. If you want it drop me an e-mail at matth@usiw.net. I'll send you a copy of it.

 
Cyprus
GeneralRe: Telnet Client?memberMatt Newman28 Nov '01 - 11:29 
I found one but I don't really need it right now. Stupid Gateway decided to sell me parts the didn't have so now I have basically no computer. But If I need it I'll let you know.
 

-Matt Newman
-Matt Newman


GeneralRe: Telnet Client?memberHanphy18 May '03 - 22:13 
Wink | ;) I'd need one, if I could, thank you!
 
hanphy_cai@hotmail.com

GeneralRe: Telnet Client?membermohammad arif22 Oct '03 - 18:21 
Hi,
I also need telnet client if u have plz send me on
 
arif_alig@hotmail.comOMG | :OMG:
GeneralRe: Telnet Client?sussAnonymous14 Mar '04 - 10:32 
Check out PUTTY - its great and free (it also supports SSH)

GeneralRe: Telnet Client?membermarfemag30 May '04 - 12:43 
Yes, PUTTY is great. You can download the source code here. Wink | ;)
GeneralRe: Telnet Client?memberMerlinblack20 Feb '06 - 18:57 
HyperTerminal works OK too, and it comes with Windows.
 
Nigel Atkinson
 
"Land a'hoy!" * CRASH * "I should av said that sooner eh?" - Eckles, The Goon Show
GeneralRe: Telnet Client?memberrushivyas17 Aug '10 - 8:27 
hi cyprus i hav taken up the project of developing a small telnet server so it would really be very kind of ayou if u can help.
 
thank you
GeneralRe: Telnet Client?memberrushivyas17 Aug '10 - 8:30 
hey i am working for telnet SERVER......
 
Plz help
 
email: rushivyas263@gmail.com

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 13 Jun 2001
Article Copyright 2001 by J.Hogendoorn
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid