/external/curl/tests/ |
D | negtelnetserver.py | 90 WONT = 3 variable in Negotiator 121 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]: 152 elif byte_int == NegTokens.WONT: 156 self.state = self.WONT 212 self.send_iac([NegTokens.WONT, NegOptions.to_val(option_str)]) 235 WONT = 252 variable in NegTokens
|
/external/toybox/toys/pending/ |
D | telnet.c | 186 if (ddww == DO) put_iac(3, IAC,WONT,TELOPT_ECHO); in handle_ddww() 190 } else if (ddww == WONT) return; in handle_ddww() 200 } else if (ddww == WONT) return; in handle_ddww() 209 put_iac(3, IAC,WONT,TELOPT_TTYPE); in handle_ddww() 221 if(ddww == DO) put_iac(3, IAC,WONT,opt); in handle_ddww() 244 case WONT: in read_server()
|
D | telnetd.c | 43 # define WONT 252 /* I won't use option */ macro
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | rfc2217.py | 88 WONT = to_bytes([252]) variable 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), 732 elif byte in (DO, DONT, WILL, WONT): 771 self.telnetSendOption((command == WILL and DONT or WONT), option) [all …]
|
/external/python/cpython2/Demo/sockets/ |
D | telnet.py | 26 WONT = chr(252) variable 90 opt = IAC + WONT 91 elif c in (WILL, WONT):
|
/external/python/cpython2/Demo/threads/ |
D | telnet.py | 27 WONT = chr(252) variable 90 opt = IAC + WONT 91 elif c in (WILL, WONT):
|
/external/python/cpython3/Lib/ |
D | telnetlib.py | 53 WONT = bytes([252]) variable 445 if c in (DO, DONT, WILL, WONT): 479 self.sock.sendall(IAC + WONT + opt) 480 elif cmd in (WILL, WONT):
|
/external/ltp/testcases/open_posix_testsuite/Documentation/ |
D | COVERAGE.signals | 37 bsd_signal WONT LOW 51 siginterrupt WONT LOW
|
/external/python/cpython2/Lib/ |
D | telnetlib.py | 54 WONT = chr(252) variable 497 if c in (DO, DONT, WILL, WONT): 531 self.sock.sendall(IAC + WONT + opt) 532 elif cmd in (WILL, WONT):
|
/external/tcpdump/ |
D | print-telnet.c | 73 #define WONT 252 /* I won't use option */ macro 423 case WONT: in telnet_parse()
|
/external/python/cpython2/Doc/library/ |
D | telnetlib.rst | 23 The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL, 212 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
|
/external/python/cpython3/Doc/library/ |
D | telnetlib.rst | 23 The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL, 220 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
|
/external/openssh/regress/ |
D | netcat.c | 72 #define WONT 252 macro 1067 if ((*p == WILL) || (*p == WONT)) in atelnet() 1070 obuf[1] = WONT; in atelnet()
|
/external/python/cpython3/Lib/test/ |
D | test_telnetlib.py | 361 (tl.IAC + tl.WONT + bytes([1]), ": IAC WONT 1\n"),
|
/external/python/cpython3/Misc/ |
D | HISTORY | 14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT
|