diff options
author | Luca Deri <deri@ntop.org> | 2022-12-29 19:38:25 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2022-12-29 19:38:25 +0100 |
commit | 8f91b8ba72e61eb15a3fdfcddd6339b2fae341be (patch) | |
tree | bb20eebc202f69a6fd95146191e718e8249c168f /src/include | |
parent | 560280e6f082d22e6a9de8e537b7876bacf8d072 (diff) |
Implemented EDNS(0) support in DNS dissector
Improved DNS dissection
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_typedefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index d9de63d5e..16612ce87 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1381,7 +1381,7 @@ struct ndpi_flow_struct { /* the only fields useful for nDPI and ntopng */ struct { u_int8_t num_queries, num_answers, reply_code, is_query; - u_int16_t query_type, query_class, rsp_type; + u_int16_t query_type, query_class, rsp_type, edns0_udp_payload_size; ndpi_ip_addr_t rsp_addr; /* The first address in a DNS response packet (A and AAAA) */ char ptr_domain_name[64 /* large enough but smaller than { } tls */]; } dns; |