rfc2217_rs/
codes.rs

1// Telnet command codes needed for command, negotiation and
2// subnegotiation serializing/deserializing
3pub const IAC: u8 = 255;
4pub const WILL: u8 = 251;
5pub const WONT: u8 = 252;
6pub const DO: u8 = 253;
7pub const DONT: u8 = 254;
8pub const SB: u8 = 250;
9pub const SE: u8 = 240;
10
11pub const COM_PORT_OPTION: u8 = 44;