Symbol: IAC
include/arpa/telnet.h
76
#define TELCMD_LAST IAC
libexec/ftpd/ftpcmd.y
1116
if (c == IAC) {
libexec/ftpd/ftpcmd.y
1123
printf("%c%c%c", IAC, DONT, 0377&c);
libexec/ftpd/ftpcmd.y
1129
printf("%c%c%c", IAC, WONT, 0377&c);
libexec/ftpd/ftpcmd.y
1132
case IAC:
sys/dev/pci/if_em_hw.c
8337
temp = E1000_READ_REG(hw, IAC);
usr.bin/ftp/ftp.c
2047
snprintf(buf, sizeof buf, "%c%c%c", IAC, IP, IAC);
usr.bin/ftp/ftp.c
453
if (c == IAC) { /* handle telnet commands */
usr.bin/ftp/ftp.c
458
fprintf(cout, "%c%c%c", IAC, DONT, c);
usr.bin/ftp/ftp.c
464
fprintf(cout, "%c%c%c", IAC, WONT, c);
usr.bin/nc/netcat.c
1422
if (*p != IAC)
usr.bin/nc/netcat.c
1425
obuf[0] = IAC;
usr.bin/telnet/commands.c
316
NET2ADD(IAC, s->what);
usr.bin/telnet/commands.c
317
printoption("SENT", IAC, s->what);
usr.bin/telnet/telnet.c
1002
IAC, SB, TELOPT_LINEMODE, LM_SLC, 0, SLC_DEFAULT, 0, IAC, SE
usr.bin/telnet/telnet.c
1148
slc_add(IAC);
usr.bin/telnet/telnet.c
1161
if (slc_add(func) == IAC)
usr.bin/telnet/telnet.c
1162
slc_add(IAC);
usr.bin/telnet/telnet.c
1163
if (slc_add(flags) == IAC)
usr.bin/telnet/telnet.c
1164
slc_add(IAC);
usr.bin/telnet/telnet.c
1165
if (slc_add((unsigned char)value) == IAC)
usr.bin/telnet/telnet.c
1166
slc_add(IAC);
usr.bin/telnet/telnet.c
1179
slc_add(IAC);
usr.bin/telnet/telnet.c
1285
opt_add(IAC);
usr.bin/telnet/telnet.c
1349
case IAC:
usr.bin/telnet/telnet.c
1350
opt_add(IAC);
usr.bin/telnet/telnet.c
1389
opt_add(IAC);
usr.bin/telnet/telnet.c
1447
if (c == IAC) {
usr.bin/telnet/telnet.c
1513
printoption("RCVD", IAC, DM);
usr.bin/telnet/telnet.c
1524
case IAC:
usr.bin/telnet/telnet.c
1525
TTYADD(IAC);
usr.bin/telnet/telnet.c
1531
printoption("RCVD", IAC, c);
usr.bin/telnet/telnet.c
1571
if (c == IAC) {
usr.bin/telnet/telnet.c
1580
if (c != IAC) {
usr.bin/telnet/telnet.c
1593
SB_ACCUM(IAC);
usr.bin/telnet/telnet.c
1598
printoption("In SUBOPTION processing, RCVD", IAC, c);
usr.bin/telnet/telnet.c
1606
SB_ACCUM(IAC);
usr.bin/telnet/telnet.c
1757
case IAC:
usr.bin/telnet/telnet.c
1758
NET2ADD(IAC, IAC);
usr.bin/telnet/telnet.c
1764
} else if (c == IAC) {
usr.bin/telnet/telnet.c
1765
NET2ADD(IAC, IAC);
usr.bin/telnet/telnet.c
1896
if ((*current&0xff) != IAC) {
usr.bin/telnet/telnet.c
1910
if ((*look++&0xff) == IAC) {
usr.bin/telnet/telnet.c
1946
#define wewant(p) ((nfrontp > p) && ((*p&0xff) == IAC) && \
usr.bin/telnet/telnet.c
195
NET2ADD(IAC, DO);
usr.bin/telnet/telnet.c
1986
NET2ADD(IAC, DO);
usr.bin/telnet/telnet.c
1998
NET2ADD(IAC, AO);
usr.bin/telnet/telnet.c
1999
printoption("SENT", IAC, AO);
usr.bin/telnet/telnet.c
2009
NET2ADD(IAC, EL);
usr.bin/telnet/telnet.c
2010
printoption("SENT", IAC, EL);
usr.bin/telnet/telnet.c
2016
NET2ADD(IAC, EC);
usr.bin/telnet/telnet.c
2017
printoption("SENT", IAC, EC);
usr.bin/telnet/telnet.c
2025
NETADD(IAC);
usr.bin/telnet/telnet.c
2028
printoption("SENT", IAC, DM);
usr.bin/telnet/telnet.c
2046
*cp++ = IAC;
usr.bin/telnet/telnet.c
2050
*cp++ = IAC;
usr.bin/telnet/telnet.c
2063
NET2ADD(IAC, IP);
usr.bin/telnet/telnet.c
2064
printoption("SENT", IAC, IP);
usr.bin/telnet/telnet.c
2077
NET2ADD(IAC, BREAK);
usr.bin/telnet/telnet.c
2078
printoption("SENT", IAC, BREAK);
usr.bin/telnet/telnet.c
2091
NET2ADD(IAC, ABORT);
usr.bin/telnet/telnet.c
2092
printoption("SENT", IAC, ABORT);
usr.bin/telnet/telnet.c
210
NET2ADD(IAC, DONT);
usr.bin/telnet/telnet.c
2105
NET2ADD(IAC, SUSP);
usr.bin/telnet/telnet.c
2106
printoption("SENT", IAC, SUSP);
usr.bin/telnet/telnet.c
2119
NET2ADD(IAC, xEOF);
usr.bin/telnet/telnet.c
2120
printoption("SENT", IAC, xEOF);
usr.bin/telnet/telnet.c
2126
NET2ADD(IAC, AYT);
usr.bin/telnet/telnet.c
2127
printoption("SENT", IAC, AYT);
usr.bin/telnet/telnet.c
2144
#define PUTSHORT(cp, x) { if ((*cp++ = ((x)>>8)&0xff) == IAC) *cp++ = IAC; \
usr.bin/telnet/telnet.c
2145
if ((*cp++ = ((x))&0xff) == IAC) *cp++ = IAC; }
usr.bin/telnet/telnet.c
2153
*cp++ = IAC;
usr.bin/telnet/telnet.c
2158
*cp++ = IAC;
usr.bin/telnet/telnet.c
225
NET2ADD(IAC, WILL);
usr.bin/telnet/telnet.c
240
NET2ADD(IAC, WONT);
usr.bin/telnet/telnet.c
662
"%c%c%c%c%s%c%c", IAC, SB, TELOPT_TTYPE,
usr.bin/telnet/telnet.c
663
TELQUAL_IS, name, IAC, SE);
usr.bin/telnet/telnet.c
683
"%c%c%c%c%ld,%ld%c%c", IAC, SB, TELOPT_TSPEED,
usr.bin/telnet/telnet.c
684
TELQUAL_IS, ospeed, ispeed, IAC, SE);
usr.bin/telnet/telnet.c
786
"%c%c%c%c%s%c%c", IAC, SB, TELOPT_XDISPLOC,
usr.bin/telnet/telnet.c
787
TELQUAL_IS, dp, IAC, SE);
usr.bin/telnet/telnet.c
803
static unsigned char str_lm[] = { IAC, SB, TELOPT_LINEMODE, 0, 0, IAC, SE };
usr.bin/telnet/telnet.c
878
IAC, SB, TELOPT_LINEMODE, LM_MODE, 0, IAC, SE
usr.bin/telnet/telnet.c
999
IAC, SB, TELOPT_LINEMODE, LM_SLC, 0, SLC_VARIABLE, 0, IAC, SE
usr.bin/telnet/utilities.c
140
if (cmd == IAC) {
usr.bin/telnet/utilities.c
263
if (i != IAC || j != SE) {
usr.bin/telnet/utilities.c
432
if ((pointer[i+SLC_VALUE] == IAC) &&
usr.bin/telnet/utilities.c
433
(pointer[i+SLC_VALUE+1] == IAC))