Telnet++
A C++ library for interacting with Telnet streams
protocol.hpp
1 #pragma once
2 
3 #include "telnetpp/core.hpp"
4 
5 //* =========================================================================
64 //* =========================================================================
65 
66 namespace telnetpp { namespace options { namespace mccp { namespace detail {
67 
68 static constexpr telnetpp::u8 option = 86;
69 
70 //* =========================================================================
74 //* =========================================================================
75 struct begin_compression
76 {
77 };
78 
79 //* =========================================================================
83 //* =========================================================================
84 struct end_compression
85 {
86 };
87 
88 //* =========================================================================
92 //* =========================================================================
93 struct begin_decompression
94 {
95 };
96 
97 //* =========================================================================
101 //* =========================================================================
102 struct end_decompression
103 {
104 };
105 
106 
107 }}}}
Definition: byte_converter.hpp:4