我有一个使用 boost::asio 进行读/写操作的 c++ 服务器 - 写出消息工作正常 - 但由于某种原因,我无法让读取工作
我从客户端发送给它的消息是 15 个 16 位无符号短裤 - 我的测试消息是这样的:
1, 34, 7, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0
现在在服务器上我经常看到这样的事情。读取经常被分解和/或乘以 256
这是一次发送两次
reading length = 8: [1 34 7 0 0 0 0 0]
reading length = 3: [1024 0 0]
reading length = 3: [0 0 0]
reading length = 8: [1 34 7 0 0 0 0 0]
reading length = 6: [1024 0 0 0 0 0]
这是第二次发送两次
reading length = 8: [1 34 7 0 0 0 0 0]
reading length = 6: [1024 0 0 0 0 0]
reading length = 6: [1 34 7 0 0 0]
reading length = 1: [0]
reading length = 0: []
reading length = 0: []
reading length = 2: [0 0]
reading length = 2: [0 0]
reading length = 1: [0]
这是第三次发送一次(我不知道这里发生了什么)
reading length = 14: [256 8704 1792 0 0 0 0 0 1024 0 0 0 0 0]
这是实际的服务器读取代码
void Session::start(void) {
msg_interface->add_msg_listener(this);
_socket.async_read_some(
boost::asio::buffer(_read_data_buffer, READ_DATA_BUFFER_LENGTH),
boost::bind(&Session::handle_read, this, boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
void Session::handle_read(const boost::system::error_code& error, std::size_t bytes_transferred) {
if (error) {
msg_interface->remove_msg_listener(this);
delete this;
} else {
if (bytes_transferred != 0) {
// print what we've received
const int length = bytes_transferred / sizeof(uint16_t);
std::cout << "reading length = " << length << ": [";
for (int i = 0; i < length; i++) {
const uint16_t data = ntohs(_read_data_buffer[i]);
std::cout << data;
if (i != length - 1) {
std::cout << " ";
}
}
std::cout << "]" << std::endl;
}
_socket.async_read_some(
boost::asio::buffer(_read_data_buffer, READ_DATA_BUFFER_LENGTH),
boost::bind(&Session::handle_read, this, boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
}
变量如下
const int READ_DATA_BUFFER_LENGTH = 1024;
class AbstractSession {
protected:
uint16_t _read_data_buffer[READ_DATA_BUFFER_LENGTH];
...
有一件事 - 我使用相同的 IO 服务在收到消息时写入消息(服务器正在与旧接口通信并将它接收到的消息发送给所有客户端)并从客户端读取消息。可以为两者使用相同的 io 服务导致这种情况发生吗?
关于我应该做些什么来解决这个问题的任何想法?