HomeSort by relevance Sort by last modified time
    Searched refs:DONT (Results 101 - 105 of 105) sorted by null

1 2 3 45

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 52 DONT = chr(254)
493 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
494 if c in (DO, DONT, WILL, WONT):
522 if cmd in (DO, DONT):
524 cmd == DO and 'DO' or 'DONT', ord(opt))
535 self.sock.sendall(IAC + DONT + opt)
  /external/tcpdump/
print-telnet.c 71 #define DONT 254 /* you are not to use option */
97 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0,
421 case DONT:
426 /* DONT/DO/WONT/WILL x */
  /external/netcat/
netcat.c 820 /* Deal with RFC 854 WILL/WONT DO/DONT negotiation. */
838 obuf[1] = DONT;
839 else if ((*p == DO) || (*p == DONT))
  /external/openssh/regress/
netcat.c 70 #define DONT 254
1050 /* Deal with RFC 854 WILL/WONT DO/DONT negotiation. */
1068 obuf[1] = DONT;
1069 else if ((*p == DO) || (*p == DONT))
    [all...]
  /external/toybox/toys/pending/
telnetd.c 41 # define DONT 254 /* you are not to use option */

Completed in 208 milliseconds

1 2 3 45