| 722 | } |
| 723 | |
| 724 | void NetConnection::processRawPacket(BitStream *bstream) |
| 725 | { |
| 726 | if(mDemoWriteStream) |
| 727 | recordBlock(BlockTypePacket, bstream->getReadByteSize(), bstream->getBuffer()); |
| 728 | |
| 729 | ConnectionProtocol::processRawPacket(bstream); |
| 730 | } |
| 731 | |
| 732 | void NetConnection::handlePacket(BitStream *bstream) |
| 733 | { |
no test coverage detected