AsyncSocket 设置超时

发布于 2024-10-20 11:36:03 字数 207 浏览 1 评论 0原文

我正在向本地网络设备发送数据。
如果设备关闭,则会在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞美少年 2024-10-27 11:36:03

如果设备已关闭

您可能想查看这种情况下的连接超时。

我使用以下内容:

[socket connectToHost:host onPort:[port intValue] withTimeout:5 error:&error];

If the device is off

Probably you want to look at the connect timeout in that case.

I use the following:

[socket connectToHost:host onPort:[port intValue] withTimeout:5 error:&error];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文