mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 16:53:16 +02:00
add a TODO for reading NAK fix
This commit is contained in:
parent
c8a03ebff8
commit
2944746629
1 changed files with 2 additions and 0 deletions
|
@ -379,6 +379,8 @@ void OctreeQueryNode::parseNackPacket(const QByteArray& packet) {
|
||||||
int numBytesPacketHeader = numBytesForPacketHeader(packet);
|
int numBytesPacketHeader = numBytesForPacketHeader(packet);
|
||||||
const unsigned char* dataAt = reinterpret_cast<const unsigned char*>(packet.data()) + numBytesPacketHeader;
|
const unsigned char* dataAt = reinterpret_cast<const unsigned char*>(packet.data()) + numBytesPacketHeader;
|
||||||
|
|
||||||
|
// TODO: This no longer has the number of sequence numbers - just read to the end of the packet in sequence number blocks
|
||||||
|
|
||||||
// read number of sequence numbers
|
// read number of sequence numbers
|
||||||
uint16_t numSequenceNumbers = (*(uint16_t*)dataAt);
|
uint16_t numSequenceNumbers = (*(uint16_t*)dataAt);
|
||||||
dataAt += sizeof(uint16_t);
|
dataAt += sizeof(uint16_t);
|
||||||
|
|
Loading…
Reference in a new issue