Telnet++
A C++ library for interacting with Telnet streams
protocol.hpp
1 #pragma once
2 
3 #include <boost/optional.hpp>
4 #include <string>
5 
6 //* =========================================================================
31 //* =========================================================================
32 namespace telnetpp { namespace options { namespace new_environ { namespace detail {
33 
34 static constexpr telnetpp::u8 option = 39;
35 
36 static constexpr telnetpp::u8 is = 0;
37 static constexpr telnetpp::u8 send = 1;
38 static constexpr telnetpp::u8 info = 2;
39 
40 static constexpr telnetpp::u8 var = 0;
41 static constexpr telnetpp::u8 value = 1;
42 static constexpr telnetpp::u8 esc = 2;
43 static constexpr telnetpp::u8 uservar = 3;
44 
45 }}}}
Definition: byte_converter.hpp:4