接收远程主机作为广播消息发送的数据报
我需要接收由连接在同一局域网上的远程主机作为广播消息发送的数据报。
我正在使用 UDPClient 但不知道要使用哪种方法。有一个方法 UDPClient.Receive 但需要一个特定的 IPEndPoint 作为参数,这显然是不需要的,因为它是我需要接收的广播消息,因此发送者不是重要的。 如果可能,请向我提供接收广播消息的代码。 谢谢。
I need to receive datagrams that are sent as a broadcast message by remote host connected on the same lan.
I am using UDPClient but have no idea which method to use.There is a method UDPClient.Receive but that requires as parameter a specific IPEndPoint which is obviously not wanted since it is a broadcast message that I need to receive and hence the sender is not important.
Please if possible provide me with the code to receive a broadcast message.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 IPEndPoint 设置为使用 ANY 地址:
然后像平常一样使用 UDPClient.Receive。
Set up the IPEndPoint to use the ANY address:
Then use UDPClient.Receive as you normally would.