From 1d492c9ed843a7372692b6a4c946d794ecb8b8b6 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Sun, 5 Jun 2022 14:45:21 +0200 Subject: Fix some debug messages (#1583) Increase max number of flows handled during fuzzing --- fuzz/fuzz_ndpi_reader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fuzz') diff --git a/fuzz/fuzz_ndpi_reader.c b/fuzz/fuzz_ndpi_reader.c index abf5a6743..508bca3ca 100644 --- a/fuzz/fuzz_ndpi_reader.c +++ b/fuzz/fuzz_ndpi_reader.c @@ -57,7 +57,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { } prefs->decode_tunnels = 1; prefs->num_roots = 16; - prefs->max_ndpi_flows = 1024 * 1024; + prefs->max_ndpi_flows = 16 * 1024 * 1024; prefs->quiet_mode = 0; workflow = ndpi_workflow_init(prefs, NULL /* pcap handler will be set later */, 0, ndpi_serialization_format_json); -- cgit v1.2.3