Home
last modified time | relevance | path

Searched refs:IAC (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_telnetlib.py340 self._test_command(['x' * 100, tl.IAC + cmd, 'y'*100, EOF_sigil])
341 self._test_command(['x' * 10, tl.IAC + cmd, 'y'*10, EOF_sigil])
342 self._test_command([tl.IAC + cmd, EOF_sigil])
344 self._test_command([tl.IAC + cmd for (cmd) in self.cmds] + [EOF_sigil])
349 send = [tl.IAC + tl.SB + tl.IAC + tl.SE,
350 tl.IAC + tl.SB + tl.IAC + tl.IAC + tl.IAC + tl.SE,
351 tl.IAC + tl.SB + tl.IAC + tl.IAC + 'aa' + tl.IAC + tl.SE,
352 tl.IAC + tl.SB + 'bb' + tl.IAC + tl.IAC + tl.IAC + tl.SE,
353 tl.IAC + tl.SB + 'cc' + tl.IAC + tl.IAC + 'dd' + tl.IAC + tl.SE,
363 want_sb_data = tl.IAC + tl.IAC + 'aabb' + tl.IAC + 'cc' + tl.IAC + 'dd'
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
Dtelnet.py23 IAC = chr(255) # Interpret as command variable
85 if c == IAC:
90 opt = IAC + WONT
94 opt = IAC + DONT
97 elif c == IAC:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtelnetlib.py50 IAC = chr(255) # "Interpret As Command" variable
277 if IAC in buffer:
278 buffer = buffer.replace(IAC, IAC+IAC)
430 if c != IAC:
442 if c == IAC:
471 self.sock.sendall(IAC + WONT + opt)
478 self.sock.sendall(IAC + DONT + opt)
/device/linaro/bootloader/edk2/StdLib/Include/arpa/
Dtelnet.h42 #define IAC 255 /* interpret as command: */ macro
77 #define TELCMD_LAST IAC