如何将boost udp socket绑定到特定接口

时间:2014-07-30 13:49:27

标签: c++ sockets boost boost-asio

我已经实现了一个提升组播UDP侦听器。

我希望它从发送多播数据包的无线设备接收消息。

如果我运行我的进程,当以太网电缆断开时,我收到数据包。但是,如果我在连接以太网电缆时启动该过程(因此有2个接口可用),我就不会收到数据包。

我试图将套接字绑定到本地地址但是没有用。

这是我的代码的一部分。如果您需要更多信息,请与我们联系。

boost::asio::io_service ioService();
boost::asio::ip::udp::endpoint multicastEP(multicastAddress, multicastPort);
boost::asio::ip::udp::endpoint localEP(localAddress, multicastPort);
boost::asio::ip::udp::socket socket(ioService, localEP.protocol());

socket.set_option(boost::asio::ip::udp::socket::reuse_address(true));
socket.set_option( boost::asio::ip::multicast::enable_loopback(true));
socket.set_option(boost::asio::ip::multicast::join_group(multicastEP.address()));

socket.bind(boost::asio::ip::udp::endpoint(boost::asio::ip::address_v4::any(), multicastPort));

1 个答案:

答案 0 :(得分:0)

我认为这应该通过系统路由级别来解决,因为套接字是一个没有直接绑定到网络设备的上层...所以解决它的方法 - 路由优先级和操作。