gpt4 book ai didi

c++ - UDP 多播不适用于 linux Debian

转载 作者:行者123 更新时间:2023-12-03 10:00:08 25 4
gpt4 key购买 nike

嗨,我的 c++ 代码或 Linux Debian 环境中存在 UDP 多播问题。
我正在使用 boost 1.67。
注:我在 Windows 和 Linux 中都使用我的代码。但在 Linux 中它不起作用,但在 Windows 中它起作用。
我可以在 Debian 中看到带有 netcat 的多播包,所以多播流就在那里!网卡上启用了多播。
所以我相信我的代码有效,但不适用于 Linux ......这可能是一个 boost 问题吗?
我的传入流量接口(interface)具有 IP 192.168.0.1,我使用的多播地址是 239.16.33.1,端口为 20001。

---Initialize_Source
...
Socket->async_receive(
boost::asio::buffer(Read_Buffer, MAX_LENGTH),
boost::bind(&Udp_Transport::Handle_Receive_From, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred)
);
...

---Join_Multicast_Group
// allow other to be bound to the same address.
Socket->set_option(boost::asio::ip::udp::socket::reuse_address(true));
// Join the multi cast group.
Socket->set_option(boost::asio::ip::multicast::join_group(Multicast_Address));
Socket->set_option(boost::asio::ip::multicast::hops(64));
这里没有太多可能出错的地方,但任何提示都会对我有很大帮助!
/H

最佳答案

实际上我发现如果我将多播端口绑定(bind)到网卡 IP 192.168.0.1 那么它只能在 Windows 中工作。但是,如果我将多播端口绑定(bind)到 IP 0.0.0.0,它也可以在 Linux 中使用。
然后我刚刚加入了这个小组:
套接字->set_option(boost::asio::ip::multicast::join_group(Multicast_Address));

关于c++ - UDP 多播不适用于 linux Debian,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65074080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com