Month: June 2024

Endianness

Let’s talk about byte ordering. You look at your packet bytes in Wireshark and see this data for a 16-bit integer field: If the data is said to be big-endian, then it is 0x0c4a = 3146 in decimal. If the data is said to be little-endian, then it is 0x4a0c = 18956 in decimal. So, […]