seanmiddleditch / libtelnet

Simple RFC-complient TELNET implementation as a C library.
http://github.com/seanmiddleditch/libtelnet
Other
329 stars 133 forks source link

telnet clinet #38

Closed SouthHalfCents closed 6 years ago

SouthHalfCents commented 6 years ago

the exmaple seens to be telnet server, how can I use the lib to create a telnet client? Can you show some exmaples please?

SouthHalfCents commented 6 years ago

I find the telnet-client.c , but I it's for linux

seanmiddleditch commented 6 years ago

The client is just a sample, but shows anything you'd need from this library specifically. Anything else you might need out of that is going to be platform-specific terminal handling which is out of scope for this project. If you're looking for ANSI code translation for Windows or a GUI package, you'll need to roll your own or find another library that handles that part.

SouthHalfCents commented 6 years ago

Thanks, it's ok now.