minimal Telnet server (RFC 854) implementation More...
minimal Telnet server (RFC 854) implementation
Definition in file telnet.h.
#include "net/sock/tcp.h"
 Include dependency graph for telnet.h:Go to the source code of this file.
Macros | |
| #define | CONFIG_TELNET_PORT (23) | 
| The port for the Telnet server to listen on.  | |
Functions | |
| int | telnet_server_start (void) | 
| Start the Telnet server thread.  More... | |
| ssize_t | telnet_server_write (const void *buffer, size_t len) | 
| Write data to the telnet client.  More... | |
| int | telnet_server_read (void *buffer, size_t count) | 
| Read data from the telnet client, will block until data is available.  More... | |
| void | telnet_server_disconnect (void) | 
| Request to disconnect the current client.  More... | |
| void | telnet_cb_pre_connected (sock_tcp_t *sock) | 
| Callback function that gets called when a telnet client connects but before stdio is redirected.  More... | |
| void | telnet_cb_connected (sock_tcp_t *sock) | 
| Callback function that gets called when a telnet client connects after stdio is redirected.  More... | |
| void | telnet_cb_disconneced (void) | 
| Callback function that gets called after a telnet client disconnected.  | |