Searched defs:IAC (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Drfc2217.py85 IAC = to_bytes([255]) # Interpret As Command variable
90 IAC_DOUBLED = to_bytes([IAC, IAC])
595 self._socket.sendall(to_bytes(data).replace(IAC, IAC_DOUBLED))
705 if byte == IAC:
715 if byte == IAC:
719 suboption.append(IAC)
721 self._read_buffer.put(IAC)
777 """Process subnegotiation, the data between IAC SB and IAC S
[all...]
/external/tcpdump/
H A Dtelnet.h46 #define IAC 255 /* interpret as command: */ macro
73 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
80 #define TELCMD_LAST IAC
/external/qemu/
H A Dqemu-char.c2010 #define IAC 255 macro
2016 /* Handle any telnet client's basic IAC options to satisfy char by
2017 * char mode with no echo. All IAC options will be removed from
2019 * state of the width of the IAC information.
2021 * IAC commands come in sets of 3 bytes with the exception of the
2022 * "IAC BREAK" command and the double IAC.
2030 if ((unsigned char)buf[i] == IAC && s->do_telnetopt == 2) {
2031 /* Double IAC means send an IAC */
[all...]

Completed in 152 milliseconds