What telnet or ssh client c++ libraries are there?

Started by
2 comments, last by Run_The_Shadows 18 years ago
Hi I want to write a telnet and possibly a ssh client in c++, and I was wondering if there are any libraries I can use? Thanks
Advertisement
OpenSSH... ?

"Those who would give up essential liberty to purchase a little temporary safety deserve neither liberty nor safety." --Benjamin Franklin

Telnet is a really simple protocol, you should look it up yourself and implement it from a sockets layer. It's a really good exercise if you're looking for that sort of thing.

http://www.scit.wlv.ac.uk/rfc/rfc8xx/RFC854.html
That's the RFC for telnet.

http://www.scit.wlv.ac.uk/~jphb/comms/telnet.html
That's the 1st thing that came up when I googled "telnet protocol"

Good Luck.

My Gamedev Journal: 2D Game Making, the Easy Way

---(Old Blog, still has good info): 2dGameMaking
-----
"No one ever posts on that message board; it's too crowded." - Yoga Berra (sorta)

The Putty sourcecode is available under the MIT license and deals with a lot of remote connection issues in Win32 and *nix.

This topic is closed to new replies.

Advertisement