コード例 #1
0
ファイル: connection.cpp プロジェクト: ruisleipa/kp2
//TODO: implement correct sending (remote call api)
void Connection::writeToServer(const Net::Packet& packet)
{
	std::string str = packet.getString();

	socket.write(str.c_str(), str.size());
}
コード例 #2
0
ファイル: connection.cpp プロジェクト: nitrotrigger/kp2
void Connection::writePacket(const Net::Packet& packet)
{
	std::string str = packet.getString();

	sendBuffer.append(str.c_str(), str.size());
}