diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-05-20 17:23:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-20 17:23:48 +0200 |
commit | 86b56646b532660a7efeb55498766e14ce8bc2c9 (patch) | |
tree | be4072e34e403401e5bc2e78fb037e56d28159da /example/reader_util.c | |
parent | 5e8f93c2d157b4af818bc80b2737ee17e920e8e9 (diff) |
ndpiReader: fix export of DNS/BitTorrent attributes (#1985)
There is no BitTorrent hash in the DNS flows
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index 57b37ec4a..c36b62ca1 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1121,6 +1121,7 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl if(flow->ndpi_flow->protos.dhcp.class_ident[0] != '\0') flow->dhcp_class_ident = ndpi_strdup(flow->ndpi_flow->protos.dhcp.class_ident); } else if(is_ndpi_proto(flow, NDPI_PROTOCOL_BITTORRENT) && + !is_ndpi_proto(flow, NDPI_PROTOCOL_DNS) && !is_ndpi_proto(flow, NDPI_PROTOCOL_TLS)) { u_int j; |