首页 > 代码库 > Python网络编程——设定并获取默认的套接字超时时间
Python网络编程——设定并获取默认的套接字超时时间
Sometimes,you need to manipulate the default values of certain properties of a socket library, for example, the socket timeout.
设定并获取默认的套接字超时时间。
1.代码
1 import socket 2 3 4 def test_socket_timeout(): 5 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 6 print("Default socket timeout: %s" % s.gettimeout()) 7 # 获取套接字默认超时时间 8 s.settimeout(100) 9 # 设置超时时间10 print("Current socket timeout: %s" % s.gettimeout())11 # 读取修改后的套接字超时时间12 13 14 if __name__ == ‘__main__‘:15 test_socket_timeout()
2. AF_INET和SOCK_STREAM解释
1 # 地址簇2 # socket.AF_INET IPv4(默认)3 # socket.AF_INET6 IPv64 # socket.AF_UNIX 只能够用于单一的Unix系统进程间通信5 6 # socket.SOCK_STREAM(数据流) 提供面向连接的稳定数据传输,即TCP/IP协议.多用于资料(如文件)传送。
3.gettimeout()和settimeout()解释
1 def gettimeout(self): # real signature unknown; restored from __doc__ 2 """ 3 gettimeout() -> timeout 4 5 Returns the timeout in seconds (float) associated with socket 6 operations. A timeout of None indicates that timeouts on socket 7 operations are disabled. 8 """ 9 return timeout10 11 12 def settimeout(self, timeout): # real signature unknown; restored from __doc__13 """14 settimeout(timeout)15 16 Set a timeout on socket operations. ‘timeout‘ can be a float,17 giving in seconds, or None. Setting a timeout of None disables18 the timeout feature and is equivalent to setblocking(1).19 Setting a timeout of zero is the same as setblocking(0).20 """21 pass22 # 设置套接字操作的超时期,timeout是一个浮点数,单位是秒。值为None表示没有超时期。23 # 一般,超时期应该在刚创建套接字时设置,因为它们可能用于连接的操作(如 client 连接最多等待5s )
4.运行结果
1 Default socket timeout: None2 Current socket timeout: 100.0
Python网络编程——设定并获取默认的套接字超时时间
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。