如何在python的socket recv方法上设置超时?

我需要在python的socket recv方法上设置超时。怎么做?



猛跑小猪
浏览 7291回答 3
3回答

BIG阳

如果要实现服务器端,则要查找的超时是连接套接字的超时,而不是主套接字的超时。换句话说,连接套接字对象还有另一个超时,这是socket.accept()方法的输出。因此:sock.listen(1)connection, client_address = sock.accept()connection.settimeout(5)    # This is the one that affects recv() method.connection.gettimeout()     # This should result 5sock.gettimeout()           # This outputs None when not set previously, if I remember correctly.如果实现客户端,那将很简单。sock.connect(server_address)sock.settimeout(3)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python