| 1251 | |
| 1252 | |
| 1253 | bool cConnection::HandleClientUnknownPacket(UInt32 a_PacketType, UInt32 a_PacketLen, UInt32 a_PacketReadSoFar) |
| 1254 | { |
| 1255 | AString Data; |
| 1256 | if (!m_ClientBuffer.ReadString(Data, a_PacketLen - a_PacketReadSoFar)) |
| 1257 | { |
| 1258 | return false; |
| 1259 | } |
| 1260 | DataLog(Data.data(), Data.size(), "****************** Unknown packet 0x%x from the client; relaying and ignoring", a_PacketType); |
| 1261 | COPY_TO_SERVER(); |
| 1262 | return true; |
| 1263 | } |
| 1264 | |
| 1265 | |
| 1266 |
nothing calls this directly
no test coverage detected