当我的客户端将结构数据发送到我的服务器时,我遇到了问题。我的客户端使用 Qt tcp 而我的服务器使用 boost.asio。在我的服务器端,我可以接收客户端发送的缓冲区数据,但是当我将数据转换为我的结构数据时,我得到一个结构数据不可读。
这是有问题的结构数据:
struct Protocole
{
int type;
char infos[1024];
}
这是我的服务器中读取客户端套接字数据的代码:
this->_socket.async_read_some(boost::asio::buffer(_buffer), // _buffer is type of char[1024];
_strand.wrap(boost::bind(&ClientManager::HandleRead,
this,
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred))
);
在 ClientManager::HandleRead 中:
ProtocoleCS *_proto; // this is the struct data i have to cast
_proto = static_cast<ProtocoleCS*>(static_cast<void*>(&_buffer));
// I can read _proto
这是我的客户端中发送结构数据的代码:
void Network::SendMsgToServer()
{
QByteArray block;
QDataStream out(&block, QIODevice::WriteOnly);
out.setVersion(QDataStream::Qt_4_7);
Protocole proto;
proto.type = 1;
std::cout << " i am sending a message" << std::endl;
proto._infos[0] = 'H';
proto._infos[1] = 'E';
proto._infos[2] = 'L';
proto._infos[3] = 'L';
proto._infos[4] = 'O';
proto._id[5] = '\0';
out << static_cast<char*>(static_cast<void*>(&proto));
this->socket->write(block);
}