diff options
author | Luca Deri <deri@ntop.org> | 2016-06-19 21:25:58 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2016-06-19 21:25:58 +0200 |
commit | adbba699887af89e89e14d55ea614677750b02f4 (patch) | |
tree | 6fb8e26f5c90b050699f7c2d2c2afba636f767e6 /example/ndpiReader.c | |
parent | 6c83cd627f13649a62dc9d5821fb5a0397951b81 (diff) |
Removed false positives from CoAP protocol
Improved DNS detection
Added misisng default DropBox port
Fix for #154
Added sample pcap of Tor traffic for regression testing
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index e51407592..deb61b681 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -633,7 +633,7 @@ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle) { /* Preferences */ ndpi_thread_info[thread_id].workflow->ndpi_struct->http_dont_dissect_response = 0; - ndpi_thread_info[thread_id].workflow->ndpi_struct->dns_dissect_response = 1; + ndpi_thread_info[thread_id].workflow->ndpi_struct->dns_dissect_response = 0; ndpi_workflow_set_flow_detected_callback(ndpi_thread_info[thread_id].workflow, on_protocol_discovered, (void *)(uintptr_t)thread_id); |