aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2021-02-03 11:51:55 +0100
committerLuca Deri <deri@ntop.org>2021-02-03 11:51:55 +0100
commit1f3ade5923fe3934cc3acd553d353d96bd00a1da (patch)
treed7a90b1d31ccca6999afcfbfe69da0faf39682fa
parent4b181be58e6f7aa03b3f01224d9d3190546fc07f (diff)
Increased number of extra packets that is necessary since the frgament mananger introduction
-rw-r--r--src/lib/protocols/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index cb5a6dcac..15d9b2948 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -307,7 +307,7 @@ static void ndpi_int_http_add_connection(struct ndpi_detection_module_struct *nd
/* This is necessary to inform the core to call this dissector again */
flow->check_extra_packets = 1;
- flow->max_extra_packets_to_check = 5;
+ flow->max_extra_packets_to_check = 8;
flow->extra_packets_func = ndpi_search_http_tcp_again;
flow->http_detected = 1;
}