| 416 | |
| 417 | |
| 418 | void NetConnection::eventWriteStartBlock(ResizeBitStream *stream) |
| 419 | { |
| 420 | stream->write(mNextRecvEventSeq); |
| 421 | for(NetEventNote *walk = mWaitSeqEvents; walk; walk = walk->mNextEvent) |
| 422 | { |
| 423 | stream->writeFlag(true); |
| 424 | S32 classId = walk->mEvent->getClassId(getNetClassGroup()); |
| 425 | stream->writeClassId(classId, NetClassTypeEvent, getNetClassGroup()); |
| 426 | walk->mEvent->write(this, stream); |
| 427 | stream->validate(); |
| 428 | } |
| 429 | stream->writeFlag(false); |
| 430 | } |
| 431 | |
| 432 | void NetConnection::eventReadStartBlock(BitStream *stream) |
| 433 | { |
nothing calls this directly
no test coverage detected