Home
last modified time | relevance | path

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

/third_party/curl/tests/
Dnegtelnetserver.py118 WONT = 3 variable in Negotiator
149 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]:
180 elif byte_int == NegTokens.WONT:
184 self.state = self.WONT
240 self.send_iac([NegTokens.WONT, NegOptions.to_val(option_str)])
263 WONT = 252 variable in NegTokens
/third_party/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
/third_party/python/Lib/
Dtelnetlib.py53 WONT = bytes([252]) variable
447 if c in (DO, DONT, WILL, WONT):
481 self.sock.sendall(IAC + WONT + opt)
482 elif cmd in (WILL, WONT):
/third_party/ltp/testcases/open_posix_testsuite/Documentation/
DCOVERAGE.signals37 bsd_signal WONT LOW
51 siginterrupt WONT LOW
/third_party/musl/include/arpa/
Dtelnet.h7 #define WONT 252 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/arpa/
Dtelnet.h7 #define WONT 252 macro
/third_party/musl/porting/liteos_m/kernel/include/arpa/
Dtelnet.h7 #define WONT 252 macro
/third_party/musl/ndk_musl_include/arpa/
Dtelnet.h7 #define WONT 252 macro
/third_party/musl/porting/uniproton/kernel/include/arpa/
Dtelnet.h7 #define WONT 252 macro
/third_party/python/Doc/library/
Dtelnetlib.rst23 The symbolic constants for the telnet commands are: IAC, DONT, DO, WONT, WILL,
224 (DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
/third_party/python/Lib/test/
Dtest_telnetlib.py362 (tl.IAC + tl.WONT + bytes([1]), ": IAC WONT 1\n"),
/third_party/python/Misc/
DHISTORY14108 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT