AsyncSocket 设置超时
我正在向本地网络设备发送数据。
如果设备关闭,则会在 75 秒后触发超时。我想通过使用以下代码来减少超时:
[sock writeData:self.printData withTimeout:10 tag:1];
但是 Timeout 参数不会改变行为。另外特殊值-1和0似乎没有影响?
如何设置超时时间?
I am sending data to a local network-device.
If the device is off, a timeout is triggered 75 seconds later. I want to reduce this timeoute by using this code:
[sock writeData:self.printData withTimeout:10 tag:1];
But the Timeout parameter doesn't change the behavior. Also the special values -1 and 0 seem to have no effect to?
How can I set timeout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看这种情况下的连接超时。
我使用以下内容:
Probably you want to look at the connect timeout in that case.
I use the following: