Home
last modified time | relevance | path

Searched refs:IAC (Results 1 – 16 of 16) sorted by relevance

/titanic_50/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dtelnet.c307 NET2ADD(IAC, DO);
323 NET2ADD(IAC, DONT);
339 NET2ADD(IAC, WILL);
355 NET2ADD(IAC, WONT);
821 "%c%c%c%c%s%c%c", IAC, SB, in suboption()
822 TELOPT_TTYPE, TELQUAL_IS, name, IAC, SE); in suboption()
846 "%c%c%c%c%d,%d%c%c", IAC, SB, in suboption()
847 TELOPT_TSPEED, TELQUAL_IS, ospeed, ispeed, IAC, SE); in suboption()
956 "%c%c%c%c%s%c%c", IAC, SB, in suboption()
957 TELOPT_XDISPLOC, TELQUAL_IS, dp, IAC, SE); in suboption()
[all …]
H A Dencrypt.c132 static uchar_t str_send[64] = { IAC, SB, TELOPT_ENCRYPT,
135 static uchar_t str_start[72] = { IAC, SB, TELOPT_ENCRYPT };
136 static uchar_t str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE };
202 if ((str_send[str_suplen++] = ep->type) == IAC) in encrypt_init()
203 str_send[str_suplen++] = IAC; in encrypt_init()
208 str_send[str_suplen++] = IAC; in encrypt_init()
724 static uchar_t str_keyid[(MAXKEYLEN*2)+5] = { IAC, SB, TELOPT_ENCRYPT };
794 if ((*strp++ = *keyid++) == IAC) in encrypt_send_keyid()
795 *strp++ = IAC; in encrypt_send_keyid()
797 *strp++ = IAC; in encrypt_send_keyid()
[all …]
H A Dauth.c365 static uchar_t str_none[] = { IAC, SB, TELOPT_AUTHENTICATION, in auth_send_retry()
366 TELQUAL_IS, AUTHTYPE_NULL, 0, IAC, SE }; in auth_send_retry()
428 static uchar_t str_request[AUTH_NAME_BUFSIZ + 6] = { IAC, SB, in auth_sendname()
434 if ((*e++ = *cp++) == IAC) in auth_sendname()
435 *e++ = IAC; in auth_sendname()
439 *e++ = IAC; in auth_sendname()
H A Denc_des.c140 fbp->fb_feed[0] = IAC; in cfb64_init()
216 if ((*p++ = fbp->temp_feed[x]) == IAC) in cfb64_start()
217 *p++ = IAC; in cfb64_start()
219 *p++ = IAC; in cfb64_start()
272 *p++ = IAC; in cfb64_is()
298 *p++ = IAC; in cfb64_is()
H A Dkerberos5.c95 static unsigned char str_data[KERBEROS_BUFSIZ] = { IAC, SB,
163 if ((*p++ = *cd++) == IAC) { in krb5_send_data()
164 *p++ = IAC; in krb5_send_data()
171 *p++ = IAC; in krb5_send_data()
H A Dauthenc.c101 if (str[0] == IAC && str[1] == SE) in net_write()
H A Dutilities.c194 if (cmd == IAC) {
339 if (i != IAC || j != SE) {
714 if ((pointer[i+SLC_VALUE] == IAC) &&
715 (pointer[i+SLC_VALUE+1] == IAC))
H A Dcommands.c508 NET2ADD(IAC, s->what);
509 printoption("SENT", IAC, s->what);
/titanic_50/usr/src/cmd/vntsd/
H A Dcmd.c401 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 Dchars.h64 #define IAC 255 /* command */ macro
/titanic_50/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.telnetd.c117 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 …]
/titanic_50/usr/src/head/arpa/
H A Dtelnet.h47 #define IAC 255 /* interpret as command: */ macro
79 #define TELCMD_LAST IAC
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dftp.c546 if (c == IAC) { /* handle telnet commands */ in getreply()
551 (void) fprintf(ctrl_out, "%c%c%wc", IAC, in getreply()
558 (void) fprintf(ctrl_out, "%c%c%wc", IAC, in getreply()
1385 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in recvrequest()
1387 msg = (char)IAC; in recvrequest()
2005 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans()
2007 *msg = (char)IAC; in proxtrans()
2038 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans()
2040 *msg = (char)IAC; in proxtrans()
2082 (void) fprintf(ctrl_out, "%c%c", IAC, IP); in proxtrans()
[all …]
/titanic_50/usr/src/uts/common/io/
H A Dtelmod.c61 #define IAC 255 macro
1007 if (tmp[0] == IAC) { in rcv_parse()
1181 if (tmp[0] == IAC) { in snd_parse()
1182 *tmp1++ = IAC; in snd_parse()
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/nc/
H A Dnetcat.c746 if (*p != IAC) in atelnet()
749 obuf[0] = IAC; in atelnet()
/titanic_50/usr/src/data/hwdata/
H A Dpci.ids8183 10ac Honeywell IAC