Skip to content

esp_telnet is a small implementation of the telnet server.

License

Notifications You must be signed in to change notification settings

frozen-eye/esp_telnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Telnet Server

This project is a simple implementation of a Telnet server. Telnet is a protocol used on the Internet or local area networks to provide a bidirectional interactive text-oriented communication facility using a virtual terminal connection.

Features

  • Supports multiple client connections
  • Simple command interpretation
  • Lightweight and fast

Configuration

To start the server, configure:

telnet_server_config_t telnet_server_config = TELNET_SERVER_DEFAULT_CONFIG;
telnet_server_create(&telnet_server_config);

To change the listening port:

telnet_server_config_t telnet_server_config = TELNET_SERVER_DEFAULT_CONFIG;
telnet_server_config.port = 1023;
telnet_server_create(&telnet_server_config);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

esp_telnet is a small implementation of the telnet server.

Resources

License

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages