Home
last modified time | relevance | path

Searched refs:WONT (Results 1 – 15 of 15) sorted by relevance

/external/curl/tests/
Dnegtelnetserver.py90 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/
Dtelnet.c186 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()
Dtelnetd.c43 # define WONT 252 /* I won't use option */ macro
/external/chromium-trace/catapult/third_party/pyserial/serial/
Drfc2217.py88 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/
Dtelnet.py26 WONT = chr(252) variable
90 opt = IAC + WONT
91 elif c in (WILL, WONT):
/external/python/cpython2/Demo/threads/
Dtelnet.py27 WONT = chr(252) variable
90 opt = IAC + WONT
91 elif c in (WILL, WONT):
/external/python/cpython3/Lib/
Dtelnetlib.py53 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/
DCOVERAGE.signals37 bsd_signal WONT LOW
51 siginterrupt WONT LOW
/external/python/cpython2/Lib/
Dtelnetlib.py54 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/
Dprint-telnet.c73 #define WONT 252 /* I won't use option */ macro
423 case WONT: in telnet_parse()
/external/python/cpython2/Doc/library/
Dtelnetlib.rst23 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/
Dtelnetlib.rst23 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/
Dnetcat.c72 #define WONT 252 macro
1067 if ((*p == WILL) || (*p == WONT)) in atelnet()
1070 obuf[1] = WONT; in atelnet()
/external/python/cpython3/Lib/test/
Dtest_telnetlib.py361 (tl.IAC + tl.WONT + bytes([1]), ": IAC WONT 1\n"),
/external/python/cpython3/Misc/
DHISTORY14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT