如何从boost UDP服务器读取数据
How to Read data from boost UDP server
这是UDP服务器接收数据并打印出来的代码。
我能够收到消息,但在消息末尾我也收到了一些垃圾字符。
我只想显示最后发送的没有垃圾字符的实际消息。
////////////////////////////////////////// //////////////////////////////////////////////// //////////////////////////
#pragma once
#include <string>
#include <iostream>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/array.hpp>
#include <qdebug.h>
using boost::asio::ip::udp;
class udp_server
{
public:
udp_server(boost::asio::io_service& io_service)
: socket_(io_service, udp::endpoint(udp::v4(), 13))
{
start_receive();
}
private:
void start_receive()
{
socket_.async_receive_from(
boost::asio::buffer(recv_buffer_), remote_endpoint_,
boost::bind(&udp_server::handle_receive, this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
void handle_receive(const boost::system::error_code& error,
std::size_t /*bytes_transferred*/)
{
if (!error || error == boost::asio::error::message_size)
{
std::string str(recv_buffer_.c_array());
std::cout << str; // Printing the string shows junk characters also
boost::shared_ptr<std::string> message(
new std::string("WAVEFRONT"));
socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
boost::bind(&udp_server::handle_send, this, message,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
start_receive();
}
}
void handle_send(boost::shared_ptr<std::string> /*message*/,
const boost::system::error_code& /*error*/,
std::size_t /*bytes_transferred*/)
{
}
udp::socket socket_;
udp::endpoint remote_endpoint_;
boost::array< char, 256> recv_buffer_;
};
“最后的垃圾字符”是 recv_buffer_
asio
收到的 UDP 数据后的字符。
你在handle_receive
函数中注释掉的bytes_transferred
参数告诉你asio
实际收到了多少个字符,即<=recv_buffer_.size()
.
如果您只是将 bytes_transferred
个字符复制到 str
,您将看到收到的内容 而没有 “最后是垃圾字符”。
这是UDP服务器接收数据并打印出来的代码。
我能够收到消息,但在消息末尾我也收到了一些垃圾字符。
我只想显示最后发送的没有垃圾字符的实际消息。
////////////////////////////////////////// //////////////////////////////////////////////// //////////////////////////
#pragma once
#include <string>
#include <iostream>
#include <boost/asio.hpp>
#include <boost/bind.hpp>
#include <boost/array.hpp>
#include <qdebug.h>
using boost::asio::ip::udp;
class udp_server
{
public:
udp_server(boost::asio::io_service& io_service)
: socket_(io_service, udp::endpoint(udp::v4(), 13))
{
start_receive();
}
private:
void start_receive()
{
socket_.async_receive_from(
boost::asio::buffer(recv_buffer_), remote_endpoint_,
boost::bind(&udp_server::handle_receive, this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
void handle_receive(const boost::system::error_code& error,
std::size_t /*bytes_transferred*/)
{
if (!error || error == boost::asio::error::message_size)
{
std::string str(recv_buffer_.c_array());
std::cout << str; // Printing the string shows junk characters also
boost::shared_ptr<std::string> message(
new std::string("WAVEFRONT"));
socket_.async_send_to(boost::asio::buffer(*message), remote_endpoint_,
boost::bind(&udp_server::handle_send, this, message,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
start_receive();
}
}
void handle_send(boost::shared_ptr<std::string> /*message*/,
const boost::system::error_code& /*error*/,
std::size_t /*bytes_transferred*/)
{
}
udp::socket socket_;
udp::endpoint remote_endpoint_;
boost::array< char, 256> recv_buffer_;
};
“最后的垃圾字符”是 recv_buffer_
asio
收到的 UDP 数据后的字符。
你在handle_receive
函数中注释掉的bytes_transferred
参数告诉你asio
实际收到了多少个字符,即<=recv_buffer_.size()
.
如果您只是将 bytes_transferred
个字符复制到 str
,您将看到收到的内容 而没有 “最后是垃圾字符”。