mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 02:03:36 +02:00
force the unordered PacketList
This commit is contained in:
parent
191ede4675
commit
20b0f4f3d1
2 changed files with 2 additions and 3 deletions
|
@ -12,8 +12,7 @@
|
||||||
#include "PacketList.h"
|
#include "PacketList.h"
|
||||||
|
|
||||||
PacketList::PacketList(PacketType::Value packetType) :
|
PacketList::PacketList(PacketType::Value packetType) :
|
||||||
_packetType(packetType),
|
_packetType(packetType)
|
||||||
_isOrdered(false)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ private:
|
||||||
std::unique_ptr<NLPacket> createPacketWithExtendedHeader();
|
std::unique_ptr<NLPacket> createPacketWithExtendedHeader();
|
||||||
|
|
||||||
PacketType::Value _packetType;
|
PacketType::Value _packetType;
|
||||||
bool isOrdered;
|
bool isOrdered = false;
|
||||||
|
|
||||||
std::unique_ptr<T> _currentPacket;
|
std::unique_ptr<T> _currentPacket;
|
||||||
std::list<std::unique_ptr<T>> _packets;
|
std::list<std::unique_ptr<T>> _packets;
|
||||||
|
|
Loading…
Reference in a new issue