本文整理汇总了Python中telnetlib.DO属性的典型用法代码示例。如果您正苦于以下问题:Python telnetlib.DO属性的具体用法?Python telnetlib.DO怎么用?Python telnetlib.DO使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类telnetlib
的用法示例。
在下文中一共展示了telnetlib.DO属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _accept_all
# 需要导入模块: import telnetlib [as 别名]
# 或者: from telnetlib import DO [as 别名]
def _accept_all(sock, cmd, opt):
if cmd == WILL:
sock.sendall(IAC + DO + opt)
elif cmd == WONT:
sock.sendall(IAC + DONT + opt)
示例2: optcallback
# 需要导入模块: import telnetlib [as 别名]
# 或者: from telnetlib import DO [as 别名]
def optcallback(socket, command, option):
"""Write by Tim Lister, thanks :)
"""
cnum = ord(command)
onum = ord(option)
if cnum == telnetlib.WILL: # and onum == ECHO:
socket.write(telnetlib.IAC + telnetlib.DONT + onum)
if cnum == telnetlib.DO and onum == telnetlib.TTYPE:
socket.write(telnetlib.IAC + telnetlib.WONT + telnetlib.TTYPE)
### Uncomment the following if the spacecraft dataset is huge! and also the global variables
# at the begining of the module
# width = struct.pack('H', MAX_WINDOW_WIDTH)
# height = struct.pack('H', MAX_WINDOW_HEIGHT)
# socket.send(telnetlib.IAC + telnetlib.SB + telnetlib.NAWS + width + height + telnetlib.IAC + telnetlib.SE)
示例3: telnet_callback
# 需要导入模块: import telnetlib [as 别名]
# 或者: from telnetlib import DO [as 别名]
def telnet_callback(tn, command, option):
if command == DO and option == TTYPE:
tn.sendall(IAC + WILL + TTYPE)
tn.sendall(IAC + SB + TTYPE + '\0' + 'LogParser' + IAC + SE)
elif command in (DO, DONT):
tn.sendall(IAC + WILL + option)
elif command in (WILL, WONT):
tn.sendall(IAC + DO + option)
示例4: process_IAC
# 需要导入模块: import telnetlib [as 别名]
# 或者: from telnetlib import DO [as 别名]
def process_IAC(self, sock, cmd, option):
"""
Read in and parse IAC commands as passed by telnetlib.
SB/SE commands are stored in sbdataq, and passed in w/ a command
of SE.
"""
if cmd == DO:
if option == TM: # timing mark - send WILL into outgoing stream
os.write(self.remote, IAC + WILL + TM)
else:
pass
elif cmd == IP:
# interrupt process
os.write(self.local, chr(ord('C') & 0x1F))
elif cmd == SB:
pass
elif cmd == SE:
option = self.sbdataq[0]
if option == NAWS: # negotiate window size.
cols = ord(self.sbdataq[1])
rows = ord(self.sbdataq[2])
s = struct.pack('HHHH', rows, cols, 0, 0)
fcntl.ioctl(self.local, termios.TIOCSWINSZ, s)
elif cmd == DONT:
pass
else:
pass
示例5: process_IAC
# 需要导入模块: import telnetlib [as 别名]
# 或者: from telnetlib import DO [as 别名]
def process_IAC(self, sock, cmd, option):
"""
Read in and parse IAC commands as passed by telnetlib.
SB/SE commands are stored in sbdataq, and passed in w/ a command
of SE.
"""
if cmd == DO:
if option == TM:
# timing mark - send WILL into outgoing stream
os.write(self.remote, IAC + WILL + TM)
else:
pass
elif cmd == IP:
# interrupt process
os.write(self.local, IPRESP)
elif cmd == SB:
pass
elif cmd == SE:
option = self.sbdataq[0]
if option == NAWS[0]:
# negotiate window size.
cols = six.indexbytes(self.sbdataq, 1)
rows = six.indexbytes(self.sbdataq, 2)
s = struct.pack('HHHH', rows, cols, 0, 0)
fcntl.ioctl(self.local, termios.TIOCSWINSZ, s)
elif cmd == DONT:
pass
else:
pass