Telnet++  3.1.0.2
A C++ library for interacting with Telnet streams
protocol.hpp
1 #pragma once
2 
3 #include "telnetpp/core.hpp"
4 
5 //* =========================================================================
25 //* =========================================================================
26 namespace telnetpp::options::msdp::detail {
27 
28 static constexpr option_type const option = 69;
29 
30 using msdp_command_type = byte;
31 static constexpr msdp_command_type const var = 1;
32 static constexpr msdp_command_type const val = 2;
33 static constexpr msdp_command_type const table_open = 3;
34 static constexpr msdp_command_type const table_close = 4;
35 static constexpr msdp_command_type const array_open = 5;
36 static constexpr msdp_command_type const array_close = 6;
37 
38 } // namespace telnetpp::options::msdp::detail