Searched refs:IAC (Results 1 - 4 of 4) sorted by relevance

/external/tcpdump/
H A Dprint-telnet.c108 /* sp points to IAC byte */
127 if (c != IAC)
130 if (c == IAC) { /* <IAC><IAC>! */
132 printf("IAC IAC");
137 if (i < 0 || i > IAC - TELCMD_FIRST)
157 /* IAC SB .... IAC S
[all...]
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/netcat/
H A Dnetcat.c832 if (*p != IAC)
835 obuf[0] = 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 673 milliseconds