/third_party/toybox/toys/pending/ |
H A D | telnet.c | 122 put_iac(6, IAC,DONT,TELOPT_ECHO,IAC,DONT, TELOPT_SGA); in handle_esc() 177 * handles server's DO DONT WILL WONT requests. 187 if(ddww == DONT) break; in handle_ddww() 193 put_iac(3, IAC,DONT,TELOPT_ECHO); in handle_ddww() 204 put_iac(3, IAC,DONT,TELOPT_SGA); in handle_ddww() 220 if(ddww == WILL) put_iac(3, IAC,DONT,opt); in handle_ddww() 242 case DONT: /* FALLTHROUGH */ in read_server()
|
/third_party/curl/tests/ |
H A D | negtelnetserver.py | 130 DONT = 5 variable in Negotiator 159 elif self.state in [self.WILL, self.WONT, self.DO, self.DONT]: 199 elif byte_int == NegTokens.DONT: 202 self.state = self.DONT 241 log.debug("Sending DONT %s", option_str) 242 self.send_iac([NegTokens.DONT, NegOptions.to_val(option_str)]) 277 DONT = 254 variable in NegTokens
|
/third_party/python/Lib/ |
H A D | telnetlib.py | 54 DONT = bytes([254]) variable 449 # 'IAC: IAC CMD [OPTION only for WILL/WONT/DO/DONT]' 450 if c in (DO, DONT, WILL, WONT): 478 if cmd in (DO, DONT): 480 cmd == DO and 'DO' or 'DONT', ord(opt)) 491 self.sock.sendall(IAC + DONT + opt)
|
/third_party/musl/porting/liteos_m/kernel/include/arpa/ |
H A D | telnet.h | 5 #define DONT 254 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 | 5 #define DONT 254 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 | 5 #define DONT 254 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 | 5 #define DONT 254 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/python/Lib/test/ |
H A D | test_telnetlib.py | 363 (tl.IAC + tl.DONT + bytes([1]), ": IAC DONT 1\n"),
|