3 #include "telnetpp/client_option.hpp" 4 #include "telnetpp/server_option.hpp" 5 #include "telnetpp/detail/routing_visitor.hpp" 98 std::function<std::vector<token> (std::string
const&)> on_text);
105 std::function<std::vector<token> (
command const &)>
const &on_command);
122 std::vector<token> receive(
u8stream const &stream);
130 std::vector<stream_token> send(std::vector<token>
const &tokens);
134 telnetpp::detail::command_router command_router_;
135 telnetpp::detail::negotiation_router negotiation_router_;
136 telnetpp::detail::subnegotiation_router subnegotiation_router_;
137 telnetpp::detail::routing_visitor visitor_;
A class that represents a Telnet option's client side.
Definition: client_option.hpp:34
A collection of bytes that models the Standard Library's Container concept.
A class that represents a Telnet option's server side.
Definition: server_option.hpp:34
A class that encapsulates the value of a Telnet command.
Definition: command.hpp:11
Definition: byte_converter.hpp:4
An abstraction for a Telnet session.
Definition: session.hpp:90