25#ifndef DETERMINISTICESPASYNCWEBSERVER_TELNET_H
26#define DETERMINISTICESPASYNCWEBSERVER_TELNET_H
32#if DETWS_ENABLE_TELNET
35typedef void (*TelnetCommandCb)(
const char *line, uint8_t conn_id);
40void telnet_on_command(TelnetCommandCb cb);
43void telnet_print(
const char *s);
46void telnet_println(
const char *s);
49void telnet_printf(
const char *fmt, ...);
52uint8_t telnet_client_count();
57void telnet_accept(uint8_t slot);
60void telnet_rx(uint8_t slot);
63void telnet_close(uint8_t slot);
User-facing configuration for DeterministicESPAsyncWebServer.
Per-protocol connection event/poll callbacks (Layer 5 dispatch vtable).