Zitat:
Zitat von Nullable
Well no, the first byte contains the size
|
Yah first byte, what about the second byte though? Or did they just randomly switch that packet to follow different structure when other packets are as following
PHP-Code:
struct _HEADER {
unsigned short Size;
unsigned short Type;
};
struct PACKET {
_HEADER Header;
BYTE* Data;
};
If it followed the normal structure the size would be 0xCC19 and the type would be 0x73CD. I didn't see such a packet when logging though.