Telnet++
A C++ library for interacting with Telnet streams
client.hpp
1 #pragma once
2 
3 #include "telnetpp/client_option.hpp"
4 
5 namespace telnetpp { namespace options { namespace mccp {
6 
7 //* =========================================================================
10 //* =========================================================================
11 class TELNETPP_EXPORT client : public telnetpp::client_option
12 {
13 public :
14  //* =====================================================================
16  //* =====================================================================
17  client();
18 
19 private :
20  //* =====================================================================
23  //* =====================================================================
24  virtual std::vector<telnetpp::token> handle_subnegotiation(
25  telnetpp::u8stream const &content);
26 
27 };
28 
29 }}}
A class that represents a Telnet option&#39;s client side.
Definition: client_option.hpp:34
A collection of bytes that models the Standard Library&#39;s Container concept.
A server option responsible for negotiating the client part of the MCCP protocol. ...
Definition: client.hpp:11
Definition: byte_converter.hpp:4