mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 17:26:30 +00:00
19 lines
235 B
Plaintext
19 lines
235 B
Plaintext
// 0x02
|
|
|
|
#include <std/mem.pat>
|
|
|
|
struct LoginBase
|
|
{
|
|
u32 sequence_id;
|
|
u8 compressed;
|
|
u8 encrypt_type;
|
|
u32 unknown08;
|
|
};
|
|
|
|
struct Packet {
|
|
LoginBase base;
|
|
u8 payload[std::mem::size() - $];
|
|
};
|
|
|
|
Packet packet @0x00;
|