UDP 格式错误的数据包

发布于 2024-09-15 21:26:31 字数 551 浏览 7 评论 0原文

我使用 C# 程序进行客户端 UDP 应用程序。应用程序侦听连接,然后进行通信。

Socket udpClient = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
udpClient.Bind(new IPEndPoint(IPAddress.Any, ListenPort));
udpClient.Blocking = true;
int count = 0;

while (count == 0) udpClient.ReceiveFrom(receiveBuffer, ref ePoint);
udpClient.SendTo(data, endPoint);
udpClient.ReceiveFrom(receiveBuffer, ref ep);
...

我使用 Wireshark 来调试应用程序。问题是,一段时间后,我的应用程序开始发送格式错误的 STUN 数据包,我认为正因为如此,它们被互联网上的路由器拒绝。

问题:是否可以防止发送格式错误的 UDP/STUN 数据包?

I use C# program for client UDP application. Application listens for a connection, and then communicates.

Socket udpClient = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
udpClient.Bind(new IPEndPoint(IPAddress.Any, ListenPort));
udpClient.Blocking = true;
int count = 0;

while (count == 0) udpClient.ReceiveFrom(receiveBuffer, ref ePoint);
udpClient.SendTo(data, endPoint);
udpClient.ReceiveFrom(receiveBuffer, ref ep);
...

I use Wireshark to debug the application. The problem is that after sometime my application starts sending malformed STUN packets, and I think that because of that they get rejected by a router on the internet.

The question: is it possible to prevent sending malformed UDP/STUN packets?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

忆梦 2024-09-22 21:26:31

当您的应用程序发送格式错误的 UDP 数据包时,它存在错误。您的代码的最小片段只有一个 SendTo 调用。您可以添加数据内容/长度的检查功能。

顺便说一句:UDP 是无连接的。我想说,您的应用程序等待请求或某种启动命令,而不是等待连接。

When your application sends malformed UDP packets, it has a bug. The minimal fragment of your code has only one SendTo call. You can add a check function for the content/length of data.

BTW: UDP is connectionless. I would say, your application waits for a request or a kind of start command not for a connection.

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