/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/ |
H A D | telnet.c | 305 NET2ADD(IAC, DO); 321 NET2ADD(IAC, DONT); 337 NET2ADD(IAC, WILL); 353 NET2ADD(IAC, WONT); 819 "%c%c%c%c%s%c%c", IAC, SB, in suboption() 820 TELOPT_TTYPE, TELQUAL_IS, name, IAC, SE); in suboption() 844 "%c%c%c%c%d,%d%c%c", IAC, SB, in suboption() 845 TELOPT_TSPEED, TELQUAL_IS, ospeed, ispeed, IAC, SE); in suboption() 954 "%c%c%c%c%s%c%c", IAC, SB, in suboption() 955 TELOPT_XDISPLOC, TELQUAL_IS, dp, IAC, SE); in suboption() [all …]
|
H A D | encrypt.c | 130 static uchar_t str_send[64] = { IAC, SB, TELOPT_ENCRYPT, 133 static uchar_t str_start[72] = { IAC, SB, TELOPT_ENCRYPT }; 134 static uchar_t str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; 200 if ((str_send[str_suplen++] = ep->type) == IAC) in encrypt_init() 201 str_send[str_suplen++] = IAC; in encrypt_init() 206 str_send[str_suplen++] = IAC; in encrypt_init() 722 static uchar_t str_keyid[(MAXKEYLEN*2)+5] = { IAC, SB, TELOPT_ENCRYPT }; 792 if ((*strp++ = *keyid++) == IAC) in encrypt_send_keyid() 793 *strp++ = IAC; in encrypt_send_keyid() 795 *strp++ = IAC; in encrypt_send_keyid() [all …]
|
H A D | auth.c | 363 static uchar_t str_none[] = { IAC, SB, TELOPT_AUTHENTICATION, in auth_send_retry() 364 TELQUAL_IS, AUTHTYPE_NULL, 0, IAC, SE }; in auth_send_retry() 426 static uchar_t str_request[AUTH_NAME_BUFSIZ + 6] = { IAC, SB, in auth_sendname() 432 if ((*e++ = *cp++) == IAC) in auth_sendname() 433 *e++ = IAC; in auth_sendname() 437 *e++ = IAC; in auth_sendname()
|
H A D | enc_des.c | 141 fbp->fb_feed[0] = IAC; in cfb64_init() 217 if ((*p++ = fbp->temp_feed[x]) == IAC) in cfb64_start() 218 *p++ = IAC; in cfb64_start() 220 *p++ = IAC; in cfb64_start() 273 *p++ = IAC; in cfb64_is() 299 *p++ = IAC; in cfb64_is()
|
H A D | kerberos5.c | 93 static unsigned char str_data[KERBEROS_BUFSIZ] = { IAC, SB, 161 if ((*p++ = *cd++) == IAC) { in krb5_send_data() 162 *p++ = IAC; in krb5_send_data() 169 *p++ = IAC; in krb5_send_data()
|
H A D | authenc.c | 99 if (str[0] == IAC && str[1] == SE) in net_write()
|
H A D | utilities.c | 192 if (cmd == IAC) { 337 if (i != IAC || j != SE) { 712 if ((pointer[i+SLC_VALUE] == IAC) && 713 (pointer[i+SLC_VALUE+1] == IAC))
|
H A D | commands.c | 499 NET2ADD(IAC, s->what); 500 printoption("SENT", IAC, s->what);
|
/illumos-gate/usr/src/cmd/vntsd/ |
H A D | cmd.c | 401 uint8_t buf[] = {IAC, DONT, LINEMODE, IAC, WILL, SUPRESS, IAC, WILL, in vntsd_set_telnet_options() 402 TEL_ECHO, IAC, DONT, TERM_TYPE, IAC, DONT, TERM_SP, in vntsd_set_telnet_options() 403 IAC, DONT, STATUS, IAC, DONT, FC, IAC, DONT, TM, IAC, DONT, ENV, in vntsd_set_telnet_options() 404 IAC, DONT, WIN_SIZE}; in vntsd_set_telnet_options() 419 if ((uint8_t)c != IAC) { in vntsd_telnet_cmd() 466 buf[0] = IAC; in vntsd_telnet_cmd()
|
H A D | chars.h | 64 #define IAC 255 /* command */ macro
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ |
H A D | in.telnetd.c | 117 static uchar_t doopt[] = { (uchar_t)IAC, (uchar_t)DO, '%', 'c', 0 }; 118 static uchar_t dont[] = { (uchar_t)IAC, (uchar_t)DONT, '%', 'c', 0 }; 119 static uchar_t will[] = { (uchar_t)IAC, (uchar_t)WILL, '%', 'c', 0 }; 120 static uchar_t wont[] = { (uchar_t)IAC, (uchar_t)WONT, '%', 'c', 0 }; 383 (uchar_t)IAC, in auth_finished() 388 (uchar_t)IAC, in auth_finished() 427 *p++ = IAC; in reply_to_client() 435 if ((*p++ = *cd++) == IAC) in reply_to_client() 436 *p++ = IAC; in reply_to_client() 438 *p++ = IAC; in reply_to_client() [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/ |
H A D | ftp.c | 543 if (c == IAC) { /* handle telnet commands */ in getreply() 548 (void) fprintf(ctrl_out, "%c%c%wc", IAC, in getreply() 555 (void) fprintf(ctrl_out, "%c%c%wc", IAC, in getreply() 1389 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in recvrequest() 1391 msg = (char)IAC; in recvrequest() 2010 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans() 2012 *msg = (char)IAC; in proxtrans() 2043 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans() 2045 *msg = (char)IAC; in proxtrans() 2087 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans() [all …]
|
/illumos-gate/usr/src/head/arpa/ |
H A D | telnet.h | 46 #define IAC 255 /* interpret as command: */ macro 78 #define TELCMD_LAST IAC
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | telmod.c | 59 #define IAC 255 macro 1009 if (tmp[0] == IAC) { in rcv_parse() 1183 if (tmp[0] == IAC) { in snd_parse() 1184 *tmp1++ = IAC; in snd_parse()
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nc/ |
H A D | netcat.c | 774 if (*p != IAC) in atelnet() 777 obuf[0] = IAC; in atelnet()
|
/illumos-gate/usr/src/data/hwdata/ |
H A D | pci.ids | 9286 10ac Honeywell IAC
|