我可以将 UDP 包广播到网络的一部分吗?
我正在尝试使用子网广播 UDP 包。 我想将我的包裹广播到 192.168.1.255 吗? 我可以这样做吗?以及如何使用c++?
i am trying to broadcast a UDP package using subnet.
i want to braodcast my package to 192.168.1.255 ?
can i do that ? and how using c++ ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 C++,我建议使用 Boost用于网络的 ASIO 包。唯一的问题是确保通过以下方式设置 UDP 套接字上的广播能力:
boost 文档的“示例”部分应该有大量参考资料来帮助您启动和运行。
If you're using C++, I'd recommend using the Boost ASIO package for networking. The only gotcha is to be sure to set the broadcast ability on your UDP socket via:
The "Examples" section of the boost documentation should have plenty of references to get you up and running.