diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2022-10-04 19:14:41 +0200 |
---|---|---|
committer | Toni <matzeton@googlemail.com> | 2022-10-04 22:17:05 +0200 |
commit | cca585053e86b70b86c12296531a882847e8dd87 (patch) | |
tree | 745017963364ee83578783974cdecb21cc326ccb /fuzz | |
parent | 131d53896f41d9be4de77907631bed82d0b79e63 (diff) |
Fix compilation and sync utests results
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/fuzz_ndpi_reader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz/fuzz_ndpi_reader.c b/fuzz/fuzz_ndpi_reader.c index a85aa574c..084e49c19 100644 --- a/fuzz/fuzz_ndpi_reader.c +++ b/fuzz/fuzz_ndpi_reader.c @@ -17,6 +17,7 @@ u_int8_t enable_protocol_guess = 1, enable_payload_analyzer = 0; u_int8_t enable_flow_stats = 0; u_int8_t human_readeable_string_len = 5; u_int8_t max_num_udp_dissected_pkts = 16 /* 8 is enough for most protocols, Signal requires more */, max_num_tcp_dissected_pkts = 80 /* due to telnet */; +ndpi_init_prefs init_prefs = ndpi_track_flow_payload | ndpi_enable_ja3_plus; int bufferToFile(const char * name, const uint8_t *Data, size_t Size) { FILE * fd; |