MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / writeDemoStartBlock

Method writeDemoStartBlock

Engine/source/core/dnet.cpp:272–283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272void ConnectionProtocol::writeDemoStartBlock(ResizeBitStream *stream)
273{
274 for(U32 i = 0; i < 32; i++)
275 stream->write(mLastSeqRecvdAtSend[i]);
276 stream->write(mLastSeqRecvd);
277 stream->write(mHighestAckedSeq);
278 stream->write(mLastSendSeq);
279 stream->write(mAckMask);
280 stream->write(mConnectSequence);
281 stream->write(mLastRecvAckAck);
282 stream->write(mConnectionEstablished);
283}
284
285bool ConnectionProtocol::readDemoStartBlock(BitStream *stream)
286{

Callers

nothing calls this directly

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected