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