1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

support encoding

This commit is contained in:
nordsoft 2022-11-15 04:44:43 +04:00
parent d3145b2ffc
commit 50a157bfd2

View File

@ -67,9 +67,10 @@ void SocketLobby::requestReadySession(const QString & session)
void SocketLobby::send(const QString & msg)
{
int sz = msg.size();
QByteArray str = msg.toUtf8();
int sz = str.size();
QByteArray pack((const char *)&sz, sizeof(sz));
pack.append(qUtf8Printable(msg));
pack.append(str);
socket->write(pack);
}