You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2021. It is now read-only.
Edward Smale edited this page Oct 24, 2020
·
4 revisions
Acknowledge packets are sent after a reliable packet is received, i.e. a packet with a nonce.
The client or server must send the acknowledgement packet with the same nonce as the reliable packet being acknowledged.
Name
Type
Description
Nonce
uint16
The acknowledgement identifier for the payload, the integer is in Big Endian.
0xFF
byte
Always 0xFF
Example
// On reliable packetif(packet.reliable){acknowledgePacket(packet.nonce);}