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