如何连续接收UDP数据包
我想从端口连续接收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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
网络堆栈为您捕获线路上发送至套接字地址的所有数据包并将其放入队列中。只需使用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.