如何连续接收UDP数据包

发布于 2024-09-26 07:48:19 字数 94 浏览 4 评论 0原文

我想从端口连续接收UDP数据包。我正在使用 recvfrom() 来接收数据包。如何在收到单个数据包后设置延迟。我想收到超过 50 个数据包。为此我需要帮助。提前致谢....

I want to receive UDP packets continuously from the port. I'm using recvfrom() to receive packets. How to put delay after receiving a single packet. I want to receive more than 50 packets. For that I need help. Thanks in advance....

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

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

发布评论

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

评论(1

绝不服输 2024-10-03 07:48:19

网络堆栈为您捕获线路上发送至套接字地址的所有数据包并将其放入队列中。只需使用recvfrom读取排队数据即可。如果您希望应用程序等待下一个接收事件,您可以使用选择功能。

The network stack captures all packets addressed to the socketaddress on the line for you and puts it in a queue. Just use recvfrom to read the queued data. If you want you application to wait for the next receive event you can use the select function.

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