Python Socket recvfrom() 超时?
我有一个线程,它有一个等待消息的套接字,使用:
message, addr = s.recvfrom(268)
是否有一个异常处理程序,在一定时间后,它会超时并执行其他操作?
作为参考,我正在使用套接字和线程在 python 中实现令牌环。
I have a Thread that has a socket that waits for message using:
message, addr = s.recvfrom(268)
Is there to have an exception handler that after a certain time, it will time out and do something else?
For reference I am implementing a token ring in python using sockets and threads.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要调用 settimeout。您可以捕获
socket.error
来检测超时。You need to call settimeout. You can catch
socket.error
to detect timeouts.