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 Oct 30, 2019. It is now read-only.
Each packet in PacketType has wrong hex value.
Every packet is sent in Little Endian bytes. That means that most significant byte is actually on the right, not left.
Due to this every packet has wrong numerical value assigned. For example:
Packet ClientEnterServerReq is actually assigned to value 0x1302 rather than 0x0213. 0x0213 is shown in any raw binary dump of data.
Didn't notice if you meant to have them in Little Endian byte order, but it can cause some problems.