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 //* =========================================================================
30 //* =========================================================================
31 namespace telnetpp::options::new_environ::detail {
32 
33 static constexpr option_type const option = 39;
34 
35 using new_environ_command_type = byte;
36 static constexpr new_environ_command_type const is = 0;
37 static constexpr new_environ_command_type const send = 1;
38 static constexpr new_environ_command_type const info = 2;
39 
40 static constexpr new_environ_command_type const var = 0;
41 static constexpr new_environ_command_type const value = 1;
42 static constexpr new_environ_command_type const esc = 2;
43 static constexpr new_environ_command_type const uservar = 3;
44 
45 } // namespace telnetpp::options::new_environ::detail