diff options
author | George Hazan <george.hazan@gmail.com> | 2024-12-12 18:09:39 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-12-12 18:09:44 +0300 |
commit | f761cffcda21c5fcb1500e992ba0f03ead3a690f (patch) | |
tree | 255074a1b27034e1d3cd9377cae33a877d75263b /protocols/Steam/src/steam_server.cpp | |
parent | 5d8202ec614342edcf1bab65ae9781f2092834a8 (diff) |
Steam: code cleaning
Diffstat (limited to 'protocols/Steam/src/steam_server.cpp')
-rw-r--r-- | protocols/Steam/src/steam_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_server.cpp b/protocols/Steam/src/steam_server.cpp index 8dc8274240..b632695e7e 100644 --- a/protocols/Steam/src/steam_server.cpp +++ b/protocols/Steam/src/steam_server.cpp @@ -112,6 +112,7 @@ void CSteamProto::ProcessMulti(const uint8_t *buf, size_t cbLen) while ((int)cbLen > 0) { uint32_t cbPacketLen = *(uint32_t *)buf; buf += sizeof(uint32_t); cbLen -= sizeof(uint32_t); + Netlib_Dump(m_ws->getConn(), buf, cbLen, false, 0); ProcessMessage(buf, cbPacketLen); buf += cbPacketLen; cbLen -= cbPacketLen; } |