Nilesh Rade
Nilesh Rade

Reputation: 43

writing a Telnet server and Telnet client in C

I have selected an project for writing a Telnet server and Telnet client code in C. i am learning C programming.

Has anyone attempted this.Please tell me how to proceed and materials to be refer. sorry for asking source code.I am not getting how to start.So please refer me the material,so i can try

the platform i am using is ubuntu server

Thanks

Upvotes: 1

Views: 10552

Answers (2)

karlphillip
karlphillip

Reputation: 93410

That's a ton of telnet client/server implementations written on C out there. Google can easily find it for you. For instance, try searching for: telnet.c

Also, take a look at this thread for information on telnet servers:

Using telnet in a C Program

Upvotes: 3

The Archetypal Paul
The Archetypal Paul

Reputation: 41749

Wikipedia has an article on the protocol including references to the various relevant RFCs. So I would suggest starting there, and write a server and client :) If you have specific issues either with interpreting the documentation or writing the code, then post a question, but as DarkDust says, "please do my assignment for me" questions aren't usually well-received here.

Upvotes: 3

Related Questions