Telnet++
A C++ library for interacting with Telnet streams
protocol.hpp
1 #pragma once
2 
3 //* =========================================================================
23 //* =========================================================================
24 namespace telnetpp { namespace options { namespace msdp {
25  namespace detail {
26 
27 static constexpr telnetpp::u8 option = 69;
28 
29 static constexpr telnetpp::u8 var = 1;
30 static constexpr telnetpp::u8 val = 2;
31 static constexpr telnetpp::u8 table_open = 3;
32 static constexpr telnetpp::u8 table_close = 4;
33 static constexpr telnetpp::u8 array_open = 5;
34 static constexpr telnetpp::u8 array_close = 6;
35 
36 }}}}
Definition: byte_converter.hpp:4