mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-19 16:52:25 +00:00
18 lines
234 B
Plaintext
18 lines
234 B
Plaintext
// 0x19
|
|
|
|
#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; |