1

我已经实现了一组成功运行的多播阅读器,但在一天中,它们中的一个或多个会周期性地随机丢失 2 分钟的数据块。我的工作理论是路由器的定期报告请求丢失或主机报告丢失。所以我想在某个时间间隔内抢先向路由器发送报告。所以问题是我该怎么做?我在 boost:asio 中没有看到用于多播的重新加入方法。任何想法将不胜感激。

// code snippet from the constructor method
// 
boost::asio::ip::udp::endpoint listen_endpoint(listen_address, mcPort);
socket_.open(listen_endpoint.protocol());
socket_.set_option(boost::asio::ip::udp::socket::reuse_address(true));
socket_.bind(listen_endpoint);

boost::asio::socket_base::receive_buffer_size option(65536*16);                    
socket_.set_option(option);
//
// Join the multicast group.
//    
socket_.set_option(boost::asio::ip::multicast::join_group(multicast_address));

m_TimerRejoinGroup.expires_from_now(boost::posix_time::seconds(10));
m_TimerRejoinGroup.async_wait(boost::bind(&Feed::handleRejoin, this));
4

1 回答 1

2

在回答您的直接问题时,没有重新加入选项,但您可以离开并再次加入

socket_.set_option(boost::asio::ip::multicast::leave_group(multicast_address));
socket_.set_option(boost::asio::ip::multicast::join_group(multicast_address));
于 2012-08-01T15:06:25.643 回答