我是ASIO的新手,我试图让一个相对简单的UDP广播工作,我没有看到任何数据包离开我的PC在Wireshark。我错过了io_service
或socket
的配置文件吗?这是我的完整代码:
#include <iostream>
#include <boost/asio.hpp>
#include <array>
using boost::asio::ip::udp;
namespace asio = boost::asio;
const char* idnMsg = "*IDN?;";
int main(int argc, char* argv[])
{
try
{
asio::io_service serv;
boost::system::error_code err;
udp::socket socket(serv);
socket.open(asio::ip::udp::v4(), err);
if (!err)
{
socket.set_option(udp::socket::reuse_address(true));
socket.set_option(asio::socket_base::broadcast(true));
asio::ip::udp::endpoint senderEndpoint(asio::ip::address_v4::broadcast(), 7777);
socket.send_to(asio::buffer(idnMsg, 6), senderEndpoint);
//socket.close(err);
std::array<char, 128> buf;
while (socket.available())
{
asio::ip::udp::endpoint remote;
size_t len = socket.receive_from(asio::buffer(buf), remote);
std::cout << "Received: ";
std::cout.write(buf.data(), len);
buf.fill(0);
}
}
else
std::cerr << "Error connecting: " << err.message() << std::endl;
}
catch (std::exception& e)
{
std::cerr << e.what() << std::endl;
}
return 0;
}
您可能会注意到它与asio示例和another SO answer的组合具有惊人的相似性。
我在Windows 7 x64的Visual Studio 2015中使用NuGet中的Boost.Asio。如果切换到手动编译的独立Asio会有所帮助,我会的。无论如何,我计划在未来做到这一点,因为我不需要在我目前的计划中进行其余的提升。
正如我所说的,我看到没有数据包离开我的PC在Wireshark,我甚至在我的网络上有几个响应该数据包的设备,我没有看到任何响应。
编辑:这个在Linux中使用独立ASIO的代码工作正常。但是如果我最终要用它来运送代码,我将需要ASIO在Windows上工作;跨平台是伟大的,我的目标,但Windows是最大的市场。