使用 .NET 'Async' API 防止 TIME

编程入门 行业动态 更新时间:2024-10-23 05:46:17
本文介绍了使用 .NET 'Async' API 防止 TIME_WAIT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个问题,我已经开发了一个客户端和服务器包装器供我个人使用,但不幸的是由于网络编程知识不足,我在客户端连接期间遇到了 TIME_WAIT 问题.我的客户端现在尝试在短时间内与同一主机建立多个连接,我发现其主要原因是因为我试图重用套接字并且它进入 TIME_WAIT 状态,因为我正在关闭没有正常关闭的连接.我想知道使用 .NET 套接字关闭连接的正确模式,以防我大量使用异步"API,即 ConnectAsync、AcceptAsync、SendAsync、ReceiveAsync、DisconnectAsync(DisconnectAsync - 重用套接字)等函数

I have a problem, I've developed a Client and Server wrapper for my personal use, but unfortunately due to insufficient knowledge in network programming, I have TIME_WAIT problems during connect on the client. My client tries to make multiple connections to the same host within short period of time now, I have found out that the main reason for that is because I'm trying to reuse the socket and it goes to TIME_WAIT state because I'm closing the connection without graceful shutdown. I would like to know the correct pattern to close connection using .NET sockets in case I'm using 'Async' APIs intensively i.e. functions like ConnectAsync, AcceptAsync, SendAsync, ReceiveAsync, DisconnectAsync (DisconnectAsync - reuses socket)

推荐答案

您可以在套接字上使用 SO_REUSEADDR 来解决这个问题.有关详细信息,请参阅 Socket.SetSocketOption,它是 ReuseAddress 需要设置的选项.

You can use SO_REUSEADDR on the socket to get around this. See Socket.SetSocketOption for details, it's the ReuseAddress option you need to set.

顺便说一句,您不是真的要重用套接字吗?一旦出现错误,您必须将其关闭并打开一个新错误.

By the way you don't really mean reuse the socket do you? once you get an error, you have to close it and open a new one.

更多推荐

使用 .NET 'Async' API 防止 TIME

本文发布于:2023-11-13 00:07:52,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1582862.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:NET   Async   TIME   API

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!