/third_party/curl/tests/ |
H A D | negtelnetserver.py | 127 WILL = 2 variable in Negotiator 159 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]: 186 if byte_int == NegTokens.WILL: 189 self.state = self.WILL 245 log.debug("Sending WILL %s", option_str) 246 self.send_iac([NegTokens.WILL, NegOptions.to_val(option_str)]) 271 WILL = 251 variable in NegTokens
|
/third_party/toybox/toys/pending/ |
H A D | telnet.c | 177 * handles server's DO DONT WILL WONT requests. 189 if (ddww == WILL) return; in handle_ddww() 199 if (TT.flags & UF_SGA){ if (ddww == WILL) return; in handle_ddww() 208 (TT.ttype)? put_iac(3, IAC,WILL,TELOPT_TTYPE): in handle_ddww() 213 put_iac(3, IAC,WILL,TELOPT_NAWS); in handle_ddww() 220 if(ddww == WILL) put_iac(3, IAC,DONT,opt); in handle_ddww() 243 case WILL: /* FALLTHROUGH */ in read_server()
|
H A D | telnetd.c | 154 IAC, WILL, TELOPT_ECHO, IAC, WILL, TELOPT_SGA }; in new_session()
|
/third_party/python/Lib/ |
H A D | telnetlib.py | 57 WILL = bytes([251]) variable 449 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]' 450 if c in (DO, DONT, WILL, WONT): 472 # unless we did a WILL/DO before. 485 elif cmd in (WILL, WONT): 487 cmd == WILL and 'WILL' or 'WONT', ord(opt))
|
/third_party/musl/porting/liteos_m/kernel/include/arpa/ |
H A D | telnet.h | 8 #define WILL 251 macro 27 #define telcmds ((char [][6]){ "EOF", "SUSP", "ABORT", "EOR", "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC", "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0 })
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/arpa/ |
H A D | telnet.h | 8 #define WILL 251 macro 27 #define telcmds ((char [][6]){ "EOF", "SUSP", "ABORT", "EOR", "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC", "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0 })
|
/third_party/musl/porting/uniproton/kernel/include/arpa/ |
H A D | telnet.h | 8 #define WILL 251 macro 27 #define telcmds ((char [][6]){ "EOF", "SUSP", "ABORT", "EOR", "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC", "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0 })
|
/third_party/musl/include/arpa/ |
H A D | telnet.h | 8 #define WILL 251 macro 27 #define telcmds ((char [][6]){ "EOF", "SUSP", "ABORT", "EOR", "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC", "EL", "GA", "SB", "WILL", "WONT", "DO", "DONT", "IAC", 0 })
|
/third_party/icu/icu4c/source/tools/genren/ |
H A D | genren.pl | 93 * YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN!
|
/third_party/skia/third_party/externals/icu/source/tools/genren/ |
H A D | genren.pl | 93 * YOU ARE DOING, OTHERWISE VERY BAD THINGS WILL HAPPEN!
|
/third_party/python/Lib/test/ |
H A D | test_telnetlib.py | 364 (tl.IAC + tl.WILL + bytes([1]), ": IAC WILL 1\n"),
|