Telnet++  3.1.0.2
A C++ library for interacting with Telnet streams
server.hpp
1 #pragma once
2 
3 #include "telnetpp/core.hpp"
4 #include "telnetpp/options/basic_server.hpp"
5 #include "telnetpp/options/suppress_ga/detail/protocol.hpp"
6 
8 
9 //* =========================================================================
15 //* =========================================================================
16 class TELNETPP_EXPORT server
18  telnetpp::options::suppress_ga::detail::option>
19 {
20 public:
21  explicit server(telnetpp::session &sess) noexcept;
22 };
23 
24 } // namespace telnetpp::options::suppress_ga
A class template that generates basic classes that handle no subnegotiations; they merely exist for e...
Definition: basic_server.hpp:14
An implementation of the server side of the Telnet Suppress Go- Ahead option.
Definition: server.hpp:19
An abstraction for a Telnet session.
Definition: session.hpp:141
An implementation of the standard Telnet Suppress Go-Ahead option.
Definition: client.hpp:7