| 717 | } |
| 718 | |
| 719 | void NetConnection::processRawPacket(BitStream *bstream) |
| 720 | { |
| 721 | if(mDemoWriteStream) |
| 722 | recordBlock(BlockTypePacket, bstream->getReadByteSize(), bstream->getBuffer()); |
| 723 | |
| 724 | ConnectionProtocol::processRawPacket(bstream); |
| 725 | } |
| 726 | |
| 727 | void NetConnection::handlePacket(BitStream *bstream) |
| 728 | { |
no test coverage detected