- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试在 redhat 中使用参数 0.0.0.0 127.0.0.1 运行以下程序,但在 socket_.set_option(boost::asio::ip::multicast::加入组(多播地址));
它也尝试在窗口中运行它,并且在 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;
}
最佳答案
来自 this earlier question , 你需要
socket_.set_option(
boost::asio::ip::multicast::join_group(multicast_address.to_v4()));
也就是说,将 .to_v4()
附加到您的 ip::address
变量上。
关于c++ - 提升 asio set_option 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14116454/
我有一个名为 result 的 DataFrame。 在教程中,我正在观看 Wes McKinney 在执行仅包含 df 名称的单元格时获取以下返回数据 - 当我执行包含 result 的单元格时,我
这可能是个愚蠢的问题,但是...... 在导入 pandas 后设置选项时,我一次设置一个选项,例如: pd.set_option('max_rows',1000) pd.set_option('no
我们已经成功安装了 python-ldap(2.4.19) 模块并成功执行了大部分操作。 但是当我们尝试加载证书以使用 ssl (ldaps) 时,ldap.set_option 总是返回异常。 它出
我尝试在 redhat 中使用参数 0.0.0.0 127.0.0.1 运行以下程序,但在 socket_.set_option(boost::asio::ip::multicast::加入组(多播地
我有一个简单的boost::asio::ip::tcp::acceptor,它几乎什么都不做——它在无限循环中接受连接。然后,我有多个连接器同时运行,试图连接... pSocket->async_co
我是 Dask 新手,我在我的 MacBook MacOS High Sierra 10.13.6 上安装了新版本 2.12.0。当我尝试使用以下代码启动分布式模式时: from dask.distr
我正在使用 Jupyter notebook 并导入了许多 DataFrames,其中一个包含很长的字符串。因此,我想在不影响全局设置的情况下临时更改 pandas 的显示选项。我尝试使用 with:
我需要设置选项 boost::asio::ip::tcp::no_delay 和 boost::asio::socket_base::linger boost::asio::ip::tcp::sock
我找不到 pandas.set_option() 的选项列表。 有谁知道这样的列表是否存在? 我能找到的最好的是这个页面:http://pandas.pydata.org/pandas-docs/de
这个问题在这里已经有了答案: iostream and No_delay option (1 个回答) 关闭 7 年前。 我这样创建一个套接字: client::client(boost::asio
我是一名优秀的程序员,十分优秀!