Click here to Skip to main content
15,881,861 members
Articles / Desktop Programming / MFC
Article

Telnet Console Application

Rate me:
Please Sign up or sign in to vote.
4.96/5 (18 votes)
31 Jul 2001 278.7K   9.3K   63   29
A console based telnet application.

Image 1

Introduction

This is a telnet console application that implements the Telnet client protocol in rfc854. I have run it on VC6, NT4.0 SP3. I did not test it on 95 and VC5.

Telnet

The purpose of the TELNET Protocol is to provide a fairly general, bi-directional, eight-bit byte oriented communications facility. Its primary goal is to allow a standard method of interfacing terminal devices and terminal-oriented processes to each other. It is envisioned that the protocol may also be used for terminal-terminal communication ("linking") and process-process communication (distributed computation).

General Considerations

A TELNET connection is a Transmission Control Protocol (TCP) connection used to transmit data with interspersed TELNET control information. The TELNET protocol is built upon three main ideas: first, the concept of a "Network Virtual Terminal"; second, the principle of negotiated options; and third, a symmetric view of terminals and processes.

When a TELNET connection is first established, each end is assumed to originate and terminate at a "Network Virtual Terminal", or NVT. An NVT is an imaginary device which provides a standard, network-wide, intermediate representation of a canonical terminal. This eliminates the need for "server" and "user" hosts to keep information about the characteristics of each other's terminals and terminal handling conventions. All hosts, both user and server, map their local device characteristics and conventions so as to appear to be dealing with an NVT over the network, and each can assume a similar mapping by the other party. The NVT is intended to strike a balance between being overly restricted (not providing hosts a rich enough vocabulary for mapping into their local character sets), and being overly inclusive (penalizing users with modest terminals).

This project has five main classes.

CSocketDx

CSocketDx class is used to establish TCP connection. It has 3 functions:

CSocketDx(char *,int);
~CSocketDx();
int Create();
int Connect();
SOCKET TelnetConnect();

CSocketRx

CSocketRx class is used to receive data. It has only one thread.

CSocketRx();
CSocketRx(SOCKET,HANDLE&);
virtual ~CSocketRx();
static DWORD RdTh(CSocketRx *);

CSocketTx

CSocketTx class is used to send data. It has only one thread.

CSocketTx(SOCKET,HANDLE&);
virtual ~CSocketTx();
static DWORD SendTh(CSocketTx*);

CProtocolRx

CProtocolRx class is used to implement the Telnet protocol.

inline void yesreply(SOCKET server, _verb verb,_option option);
inline void noreply(SOCKET server, _verb verb,_option option);
inline void askfor(SOCKET server, _verb verb,_option option);
void TelentProtcol(SOCKET server,unsigned char code);

Platforms

I have run it on VC6, NT4.0 SP3, I did not test it on 95 and VC5.

Limitations

Cannot handle arrow keys.

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


Written By
Web Developer
Pakistan Pakistan
Master of Computer Science
Experince
1). C++
2). C
3). Network Programming...
Socket,Pipe,Protocol Implemntation
4). hardware interfaceing
5). Emabeded programming in C51...Etc
(for 8051,PIC,C166 Processores)


Comments and Discussions

 
QuestionThe download URL is invalid Pin
MasterFan15-Jul-13 19:00
MasterFan15-Jul-13 19:00 
Questionerror while building application Pin
smaranika8-Mar-11 19:32
smaranika8-Mar-11 19:32 
GeneralMy vote of 5 Pin
dkgversion6-Dec-10 18:34
dkgversion6-Dec-10 18:34 
NewsIt works with win 7 Pin
Dr.Luiji18-Feb-10 4:29
professionalDr.Luiji18-Feb-10 4:29 
Just for fun I try it under Windows 7, compiled with VC6 and OMG | :OMG: it works after 10 years!!
Cheers
Dr.Luiji

Trust and you'll be trusted.

My Blog : The Code Is Art

Questionopen source software ? license? Pin
johnlol18-Jan-10 9:43
johnlol18-Jan-10 9:43 
GeneralThanks Pin
auralius manurung28-Oct-08 22:43
auralius manurung28-Oct-08 22:43 
Questionhow to change this program to send commands via file handle and store output into a file??? Pin
RAJKUMARV21-Apr-08 1:42
RAJKUMARV21-Apr-08 1:42 
QuestionHow to off ECHO on client window? Pin
kumardeepak4-Feb-07 22:15
kumardeepak4-Feb-07 22:15 
AnswerRe: How to off ECHO on client window? Pin
723Alex14-Mar-07 16:30
723Alex14-Mar-07 16:30 
QuestionHow could I send arrow keys? Pin
eghost30-Jan-07 22:53
eghost30-Jan-07 22:53 
AnswerRe: How could I send arrow keys? Pin
eghost31-Jan-07 14:03
eghost31-Jan-07 14:03 
GeneralRe: How could I send arrow keys? Pin
eghost1-Feb-07 21:16
eghost1-Feb-07 21:16 
QuestionHow to disable Telnet-Prompt? Pin
mephistho17-Jul-06 22:33
mephistho17-Jul-06 22:33 
AnswerRe: How to disable Telnet-Prompt? Pin
kumardeepak4-Feb-07 22:17
kumardeepak4-Feb-07 22:17 
GeneralRe: How to disable Telnet-Prompt? Pin
mephistho5-Feb-07 21:36
mephistho5-Feb-07 21:36 
GeneralRe: How to disable Telnet-Prompt? Pin
kumardeepak6-Feb-07 23:52
kumardeepak6-Feb-07 23:52 
GeneralRe: How to disable Telnet-Prompt? Pin
wnagenbo12-Apr-07 4:02
wnagenbo12-Apr-07 4:02 
GeneralAbout SSH Pin
JZM21-Dec-05 14:10
JZM21-Dec-05 14:10 
GeneralRe: About SSH Pin
benjamin232-Apr-08 4:14
benjamin232-Apr-08 4:14 
GeneralCSI control sequences Pin
ssh3313-Dec-04 5:11
ssh3313-Dec-04 5:11 
GeneralTelnet Color Format Pin
cnalpine26-Dec-02 20:06
cnalpine26-Dec-02 20:06 
GeneralRe: Telnet Color Format Pin
HughJampton25-Feb-05 10:57
HughJampton25-Feb-05 10:57 
GeneralConvert it to Single Dialog Pin
Amjad W. Hawash18-Mar-02 2:28
Amjad W. Hawash18-Mar-02 2:28 
QuestionHow to put your login and password in your code? Pin
rena8-Nov-01 6:50
rena8-Nov-01 6:50 
AnswerRe: How to put your login and password in your code? Pin
markw_socal30-Nov-01 7:22
markw_socal30-Nov-01 7:22 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.