C++使用Boost库加入UDP组播时程序崩溃

程序崩溃情况

  • 本程序运行在Oracle VM VirtualBox虚拟的Ubuntu20.04

    terminate called after throwing an instance of 'boost::wrapexceptboost::system::system_error' what(): set_option: No such device 已放弃 (核心已转储) **

  • C++使用Boost库加入组播的代码

c 复制代码
#include <iostream>
#include <boost/asio.hpp>

class MulticastReceiver
{
public:
    MulticastReceiver(boost::asio::io_context &ioContext, const std::string &multicastAddress, const std::string &listenAddress, int port)
        : ioContext(ioContext),
          socket(ioContext),
          multicastEndpoint(boost::asio::ip::address::from_string(multicastAddress), port),
          listenEndpoint(boost::asio::ip::address::from_string(listenAddress), port)
    {
        // 创建套接字
        socket.open(listenEndpoint.protocol());

        // 设置套接字选项,允许地址重用
        socket.set_option(boost::asio::ip::udp::socket::reuse_address(true));

        // 绑定到监听地址
        socket.bind(listenEndpoint);

        // 加入组播组
        socket.set_option(boost::asio::ip::multicast::join_group(multicastEndpoint.address()));
    }

    void start()
    {
        receive();
    }

private:
    void receive()
    {
        socket.async_receive_from(boost::asio::buffer(buffer), senderEndpoint,
                                  [this](const boost::system::error_code &error, std::size_t bytesTransferred)
                                  {
                                      if (!error)
                                      {
                                          // 处理接收到的数据
                                          std::cout << "Received: " << std::string(buffer.data(), bytesTransferred) << std::endl;

                                          // 继续接收数据
                                          receive();
                                      }
                                      else
                                      {
                                          std::cerr << "Error receiving data: " << error.message() << std::endl;
                                      }
                                  });
    }

private:
    boost::asio::io_context &ioContext;
    boost::asio::ip::udp::socket socket;
    boost::asio::ip::udp::endpoint multicastEndpoint;
    boost::asio::ip::udp::endpoint listenEndpoint;
    std::array<char, 1024> buffer;
    boost::asio::ip::udp::endpoint senderEndpoint;
};

  • Boost库报错信息时No such device

Boost库中boost::asio::ip::udp::socket套接字找不到网卡去加入组播。

  • 设置默认路由即可解决程序崩溃问题
shell 复制代码
route add -net 0.0.0.0 netmask 0.0.0.0 dev enp0s3
  • 查看路由表

|------------------------------------------|
| Linux系统中必须设置0.0.0.0的默认路由规则,否则程序加入组播时会宕掉。 |

相关推荐
双力臂4046 分钟前
Java注解与反射:从自定义注解到框架设计原理
java·开发语言
潇凝子潇20 分钟前
面条式代码(Spaghetti Code)
java·开发语言·log4j
码界奇点23 分钟前
Python深度挖掘:openpyxl与pandas高效数据处理实战指南
开发语言·数据库·python·自动化·pandas·python3.11
lzhdim27 分钟前
C#开发的Panel里控件拖放例子 - 开源研究系列文章
开发语言·开源·c#
Billy_Zuo36 分钟前
Android调用python库和方法的实现
android·开发语言·python
EndingCoder1 小时前
Three.js 与 WebXR:初识 VR/AR 开发
开发语言·前端·javascript·ar·vr
liulilittle1 小时前
备忘录设计模式 vs 版本设计模式
开发语言·c++·算法·设计模式
煜3641 小时前
C++继承
开发语言·c++
肆佰.1 小时前
c++ 派生类
数据结构·c++·算法
2301_763994711 小时前
类和对象(下)
开发语言·c++