HomeSort by relevance Sort by last modified time
    Searched defs:DONT (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
telnet.py 24 DONT = chr(254)
87 elif c in (DO, DONT):
89 else: print '(DONT)',
94 opt = IAC + DONT
  /external/python/cpython2/Demo/sockets/
telnet.py 24 DONT = chr(254)
87 elif c in (DO, DONT):
89 else: print '(DONT)',
94 opt = IAC + DONT
  /external/python/cpython2/Demo/threads/
telnet.py 25 DONT = chr(254)
87 elif c in (DO, DONT):
89 else: print '(DONT)',
94 opt = IAC + DONT
  /external/curl/tests/
negtelnetserver.py 92 DONT = 5
121 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]:
161 elif byte_int == NegTokens.DONT:
164 self.state = self.DONT
203 log.debug("Sending DONT %s", option_str)
204 self.send_iac([NegTokens.DONT, NegOptions.to_val(option_str)])
239 DONT = 254
  /external/toybox/toys/pending/
telnetd.c 41 # define DONT 254 /* you are not to use option */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 51 DONT = chr(254)
436 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
437 if c in (DO, DONT, WILL, WONT):
465 if cmd in (DO, DONT):
467 cmd == DO and 'DO' or 'DONT', ord(opt))
478 self.sock.sendall(IAC + DONT + opt)
  /external/python/cpython2/Lib/
telnetlib.py 52 DONT = chr(254)
496 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
497 if c in (DO, DONT, WILL, WONT):
525 if cmd in (DO, DONT):
527 cmd == DO and 'DO' or 'DONT', ord(opt))
538 self.sock.sendall(IAC + DONT + opt)
  /external/python/cpython3/Lib/
telnetlib.py 51 DONT = bytes([254])
444 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]'
445 if c in (DO, DONT, WILL, WONT):
473 if cmd in (DO, DONT):
475 cmd == DO and 'DO' or 'DONT', ord(opt))
486 self.sock.sendall(IAC + DONT + opt)
  /external/chromium-trace/catapult/third_party/pyserial/serial/
rfc2217.py 86 DONT = to_bytes([254])
226 """Manage a single telnet option, keeps track of DO/DONT WILL/WONT."""
256 """A DO/DONT/WILL/WONT was received for this option, update state and
399 TelnetOption(self, 'we-BINARY', BINARY, WILL, WONT, DO, DONT, INACTIVE),
400 TelnetOption(self, 'we-RFC2217', COM_PORT_OPTION, WILL, WONT, DO, DONT, REQUESTED),
404 TelnetOption(self, 'ECHO', ECHO, DO, DONT, WILL, WONT, REQUESTED),
405 TelnetOption(self, 'we-SGA', SGA, WILL, WONT, DO, DONT, REQUESTED),
406 TelnetOption(self, 'they-SGA', SGA, DO, DONT, WILL, WONT, REQUESTED),
407 TelnetOption(self, 'they-BINARY', BINARY, DO, DONT, WILL, WONT, INACTIVE),
408 TelnetOption(self, 'they-RFC2217', COM_PORT_OPTION, DO, DONT, WILL, WONT, REQUESTED)
    [all...]
  /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...]
  /bionic/libc/include/arpa/
telnet.h 40 #define DONT 254 /* you are not to use option */
66 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",
  /device/linaro/bootloader/edk2/StdLib/Include/arpa/
telnet.h 43 #define DONT 254 /* you are not to use option */
69 "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC",
  /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 */

Completed in 865 milliseconds