Telnet++
A C++ library for interacting with Telnet streams
protocol.hpp
1 #pragma once
2 
3 #include "telnetpp/core.hpp"
4 
5 namespace telnetpp {
6 
7 // TELNET Commands
8 static constexpr u8 const se = 240; // Subnegotiation End
9 static constexpr u8 const nop = 241; // No Operation
10 static constexpr u8 const dm = 242; // Data Mark
11 static constexpr u8 const brk = 243; // Break
12 static constexpr u8 const ip = 244; // Interrupt Process
13 static constexpr u8 const ao = 245; // Abort Output
14 static constexpr u8 const ayt = 246; // Are You There?
15 static constexpr u8 const ec = 247; // Erase Character
16 static constexpr u8 const el = 248; // Erase Line
17 static constexpr u8 const ga = 249; // Go Ahead
18 static constexpr u8 const sb = 250; // Subnegotiation Begin
19 static constexpr u8 const will = 251;
20 static constexpr u8 const wont = 252;
21 static constexpr u8 const do_ = 253;
22 static constexpr u8 const dont = 254;
23 static constexpr u8 const iac = 255; // Interpret As Command
24 
25 }
Definition: byte_converter.hpp:4