Telnet++
A C++ library for interacting with Telnet streams
subnegotiationless_server.hpp
1 #pragma once
2 
3 #include "telnetpp/server_option.hpp"
4 
5 namespace telnetpp { namespace options {
6 
7 //* =========================================================================
11 //* =========================================================================
12 template <telnetpp::u8 Option>
14 {
15 public :
16  //* =====================================================================
18  //* =====================================================================
20  : server_option(Option)
21  {
22  }
23 
24 private :
25  //* =====================================================================
28  //* =====================================================================
29  std::vector<telnetpp::token> handle_subnegotiation(
30  telnetpp::u8stream const &content) override
31  {
32  return {};
33  }
34 
35 };
36 
37 }}
A collection of bytes that models the Standard Library&#39;s Container concept.
A class template that generates basic classes that handle no subnegotiations; they merely exist for e...
Definition: subnegotiationless_server.hpp:13
A class that represents a Telnet option&#39;s server side.
Definition: server_option.hpp:34
Definition: byte_converter.hpp:4
subnegotiationless_server()
Constructor.
Definition: subnegotiationless_server.hpp:19