如何缩短TCP超时时间?
我在客户端-服务器 TCP 连接方面遇到问题。 我正在尝试从我的服务器(MS Windows 系统)建立到客户端的 TCP 连接。 服务器向客户端发送 ARP 请求,在我的例子中,客户端已关闭,因此服务器没有收到任何响应。 然后服务器等待大约 20 秒,最终超时。
在这种情况下我是否可以减少超时时间?如果是这样我该怎么做呢? 我听说windows系统默认超时时间是20秒,有什么办法可以减少这个超时时间吗?
I am having a problem with a client-server TCP connection.
I am trying to set up a TCP connection to the client from my server (MS windows system).
The server sends an ARP request to the client, in my case the client is down, so the server receives no response.
The server then waits for about 20seconds before it eventually times out.
Is there anyyway that I could reduce the length of timeout in this situation? and if so how would I go about doing it?
I have heard that the default timeout is 20seconds a windows system, is there an any way to reduce this timeout?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是使用非阻塞套接字并设置操作超时。具体如何设置超时取决于您使用的事件循环。
One way is to use non-blocking sockets and set a timeout on the operation. Exactly how you set up a timeout depends on the event loop you are using.