Home | History | Annotate | Download | only in dist

Lines Matching defs:IAC

63 #define	IAC	255		/* interpret as command: */
89 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
93 #define TELCMD_LAST IAC
375 /* sp points to IAC byte */
394 if (c != IAC)
397 if (c == IAC) { /* <IAC><IAC>! */
399 ND_PRINT("IAC IAC");
404 if (i < 0 || i > IAC - TELCMD_FIRST)
424 /* IAC SB .... IAC SE */
427 if (GET_U_1(p) == IAC && GET_U_1(p + 1) == SE)
431 if (GET_U_1(p) != IAC)
472 /* terminating IAC SE */
501 while (length > 0 && GET_U_1(sp) == IAC) {