Telnet++ 4.0.1.7
A C++ library for interacting with Telnet streams
Loading...
Searching...
No Matches
server.hpp
1#pragma once
2
3#include "telnetpp/core.hpp"
4#include "telnetpp/options/basic_server.hpp"
5#include "telnetpp/options/binary/detail/protocol.hpp"
6
7namespace telnetpp::options::binary {
8
9//* =========================================================================
14//* =========================================================================
15class TELNETPP_EXPORT server : public telnetpp::options::basic_server<
16 telnetpp::options::binary::detail::option>
17{
18public:
19 explicit server(telnetpp::session &sess) noexcept;
20};
21
22} // namespace telnetpp::options::binary
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 Telnet binary option.
Definition server.hpp:17
An abstraction for a Telnet session.
Definition session.hpp:141