dns: packed dns_header_s and dns_question_s

Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
This commit is contained in:
zhanghongyu 2022-04-07 14:45:49 +08:00 committed by archer
parent 4de0e626d0
commit e0c97ca742

View File

@ -138,7 +138,7 @@
/* The DNS message header */
struct dns_header_s
begin_packed_struct struct dns_header_s
{
uint16_t id;
uint8_t flags1;
@ -147,15 +147,15 @@ struct dns_header_s
uint16_t numanswers;
uint16_t numauthrr;
uint16_t numextrarr;
};
} end_packed_struct;
/* The DNS question message structure */
struct dns_question_s
begin_packed_struct struct dns_question_s
{
uint16_t type;
uint16_t class;
};
} end_packed_struct;
/* The DNS answer message structure */