diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-06-05 14:45:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-05 14:45:21 +0200 |
commit | 1d492c9ed843a7372692b6a4c946d794ecb8b8b6 (patch) | |
tree | 5cea7c981b3fd5fe3a733bfdb91f91afb6d130a6 /fuzz | |
parent | 59c084b166c814a4331d91e176e757126f9373e9 (diff) |
Fix some debug messages (#1583)
Increase max number of flows handled during fuzzing
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/fuzz_ndpi_reader.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |