程序在尝试创建 NNTP 连接时卡住
我的程序启动与 usenet 服务器的连接,如下所示:
s = nntplib.NNTP(self.nserver, 119, self.nuser, self.npass)
但有时会出现问题。未建立连接,程序无限期地等待响应。
我怎样才能让它检查超时?
My program starts a connection to a usenet server like this:
s = nntplib.NNTP(self.nserver, 119, self.nuser, self.npass)
But sometimes there's a problem. The connection is not made and the program waits for a response indefinitely.
How can I make it check for a timeout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是正确的解决方案,但尝试为套接字模块设置超时:
It is not the proper solution, but try to set a timeout to the socket module :