【问题标题】:Boost asio set_option errorBoost asio set_option 错误
【发布时间】:2013-01-02 03:08:21
【问题描述】:

我尝试在 redhat 中使用参数 0.0.0.0 127.0.0.1 运行以下程序,并且在 socket_.set_option(boost::asio::ip::multicast:: join_group(multicast_address));

它也尝试在窗口中运行它,并且在 vc++ 中运行良好。我快没主意了。请帮帮我。

//
// receiver.cpp
// ~~~~~~~~~~~~
//
// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//

#include <iostream>
#include <string>
#include <boost/asio.hpp>
#include "boost/bind.hpp"

const short multicast_port = 30001;

class receiver
{
public:
  receiver(boost::asio::io_service& io_service,
      const boost::asio::ip::address& listen_address,
      const boost::asio::ip::address& multicast_address)
    : socket_(io_service)
  {
    // Create the socket so that multiple may be bound to the same address.
    boost::asio::ip::udp::endpoint listen_endpoint(
        listen_address, multicast_port);
    socket_.open(listen_endpoint.protocol());
    socket_.set_option(boost::asio::ip::udp::socket::reuse_address(true));
    socket_.bind(listen_endpoint);

    **// Join the multicast group.
    socket_.set_option(
        boost::asio::ip::multicast::join_group(multicast_address)); <-- Error**

    socket_.async_receive_from(
        boost::asio::buffer(data_, max_length), sender_endpoint_,
        boost::bind(&receiver::handle_receive_from, this,
          boost::asio::placeholders::error,
          boost::asio::placeholders::bytes_transferred));
  }

  void handle_receive_from(const boost::system::error_code& error,
      size_t bytes_recvd)
  {
    if (!error)
    {
      std::cout.write(data_, bytes_recvd);
      std::cout << std::endl;

      socket_.async_receive_from(
          boost::asio::buffer(data_, max_length), sender_endpoint_,
          boost::bind(&receiver::handle_receive_from, this,
            boost::asio::placeholders::error,
            boost::asio::placeholders::bytes_transferred));
    }
  }

private:
  boost::asio::ip::udp::socket socket_;
  boost::asio::ip::udp::endpoint sender_endpoint_;
  enum { max_length = 1024 };
  char data_[max_length];
};

int main(int argc, char* argv[])
{
  try
  {
    if (argc != 3)
    {
      std::cerr << "Usage: receiver <listen_address> <multicast_address>\n";
      std::cerr << "  For IPv4, try:\n";
      std::cerr << "    receiver 0.0.0.0 239.255.0.1\n";
      std::cerr << "  For IPv6, try:\n";
      std::cerr << "    receiver 0::0 ff31::8000:1234\n";
      return 1;
    }

    boost::asio::io_service io_service;
    receiver r(io_service,
        boost::asio::ip::address::from_string(argv[1]),
        boost::asio::ip::address::from_string(argv[2]));
    io_service.run();
  }
  catch (std::exception& e)
  {
    std::cerr << "Exception: " << e.what() << "\n";
  }

  return 0;
}

【问题讨论】:

  • 我不应该使用本地 ip。它不是多播 ip 格式

标签: c++ boost-asio


【解决方案1】:

来自this earlier question,你需要

socket_.set_option(
    boost::asio::ip::multicast::join_group(multicast_address.to_v4()));

也就是说,将.to_v4() 附加到您的ip::address 变量上。

【讨论】:

  • 谢谢。我也从谷歌做了一些搜索。此解决方案无法解决我的错误。 socket_.set_option(boost::asio::ip::multicast::join_group(multicast_address.to_v4()));
  • @BryanFok 当您创建listen_endpoint 时,您是否也传递了listen_address.to_v4()?我注意到链接的问题使用udp::v4()
  • 刚试过。 boost::asio::ip::udp::endpointlisten_endpoint(listen_address.to_v4(), multicast_port);。同样的错误
【解决方案2】:

我不应该使用本地 ip。不是组播ip格式

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2016-05-11
    • 1970-01-01
    • 2013-12-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-09-17
    • 1970-01-01
    相关资源
    最近更新 更多