本文整理汇总了Python中Lib.unpack16bit方法的典型用法代码示例。如果您正苦于以下问题:Python Lib.unpack16bit方法的具体用法?Python Lib.unpack16bit怎么用?Python Lib.unpack16bit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Lib
的用法示例。
在下文中一共展示了Lib.unpack16bit方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: processTCPReply
# 需要导入模块: import Lib [as 别名]
# 或者: from Lib import unpack16bit [as 别名]
def processTCPReply(self):
if self.timeout > 0:
self.s.settimeout(self.timeout)
else:
self.s.settimeout(None)
f = self.s.makefile('r')
header = self._readall(f,2)
count = Lib.unpack16bit(header)
self.reply = self._readall(f,count)
self.time_finish=time.time()
self.args['server']=self.ns
return self.processReply()
示例2: processTCPReply
# 需要导入模块: import Lib [as 别名]
# 或者: from Lib import unpack16bit [as 别名]
def processTCPReply(self):
if self.timeout > 0:
r,w,e = select.select([self.s],[],[],self.timeout)
if not len(r):
raise DNSError, 'Timeout'
f = self.s.makefile('r')
header = f.read(2)
if len(header) < 2:
raise DNSError,'EOF'
count = Lib.unpack16bit(header)
self.reply = f.read(count)
if len(self.reply) != count:
# FIXME: Since we are non-blocking, it could just be a large reply
# that we need to loop and wait for.
raise DNSError,'incomplete reply'
self.time_finish=time.time()
self.args['server']=self.ns
return self.processReply()