#include <InternalPacket.h>
Inherits RakNet::InternalPacketFixedSizeTransmissionHeader.
Public Types | |
enum | AllocationScheme { NORMAL, REF_COUNTED, STACK } |
How to alloc and delete the data member. More... | |
Public Attributes | |
MessageNumberType | messageInternalOrder |
Identifies the order in which this number was sent. Used locally. | |
bool | messageNumberAssigned |
RakNet::TimeUS | creationTime |
Was this packet number used this update to track windowing drops or increases? Each packet number is only used once per update. | |
RakNet::TimeUS | nextActionTime |
The resendNext time to take action on this packet. | |
unsigned char * | data |
Buffer is a pointer to the actual data, assuming this packet has data at all. | |
enum RakNet::InternalPacket::AllocationScheme | allocationScheme |
How to alloc and delete the data member. | |
PacketPriority | priority |
How many attempts we made at sending this message. | |
uint32_t | sendReceiptSerial |
If the reliability type requires a receipt, then return this number with it. |
How to alloc and delete the data member.
NORMAL | Data is allocated using rakMalloc. Just free it. |
REF_COUNTED | data points to a larger block of data, where the larger block is reference counted. internalPacketRefCountedData is used in this case |
STACK | If allocation scheme is STACK, data points to stackData and should not be deallocated This is only used when sending. Received packets are deallocated in RakPeer |
RakNet::TimeUS RakNet::InternalPacket::creationTime |
Was this packet number used this update to track windowing drops or increases? Each packet number is only used once per update.
When this packet was created
Has this message number been assigned yet? We don't assign until the message is actually sent. This fixes a bug where pre-determining message numbers and then sending a message on a different channel creates a huge gap. This causes performance problems and causes those messages to timeout.
How many attempts we made at sending this message.
The priority level of this packet