CMD_SURVEY_RESULT
Protocol Version 3
Wowm Representation
Autogenerated from wowm
file at wow_message_parser/wowm/login/survey_result.wowm:3
.
clogin CMD_SURVEY_RESULT = 0x04 {
u32 survey_id;
u8 error;
u16 compressed_data_length;
u8[compressed_data_length] data;
}
Header
Login messages have a header of 1 byte with an opcode. Some messages also have a size field but this is not considered part of the header.
Login Header
Offset | Size / Endianness | Type | Name | Description |
---|---|---|---|---|
0x00 | 1 / - | uint8 | opcode | Opcode that determines which fields the message contains. |
Body
Offset | Size / Endianness | Type | Name | Comment |
---|---|---|---|---|
0x01 | 4 / Little | u32 | survey_id | |
0x05 | 1 / - | u8 | error | |
0x06 | 2 / Little | u16 | compressed_data_length | |
0x08 | ? / - | u8[compressed_data_length] | data |
Examples
Example 1
4, // opcode (4)
222, 250, 0, 0, // survey_id: u32
0, // error: u8
1, 0, // compressed_data_length: u16
255, // data: u8[compressed_data_length]