aboutsummaryrefslogtreecommitdiff
path: root/fuzz/fuzz_common_code.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/fuzz_common_code.c')
-rw-r--r--fuzz/fuzz_common_code.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/fuzz/fuzz_common_code.c b/fuzz/fuzz_common_code.c
index e4ab68ad8..30dc5baa7 100644
--- a/fuzz/fuzz_common_code.c
+++ b/fuzz/fuzz_common_code.c
@@ -34,22 +34,23 @@ void fuzz_set_alloc_callbacks_and_seed(int seed)
fuzz_set_alloc_seed(seed);
}
-void fuzz_init_detection_module(struct ndpi_detection_module_struct **ndpi_info_mod,
- int enable_log)
+void fuzz_init_detection_module(struct ndpi_detection_module_struct **ndpi_info_mod)
{
ndpi_init_prefs prefs = ndpi_enable_ja3_plus;
- NDPI_PROTOCOL_BITMASK all, debug_bitmask;
+ NDPI_PROTOCOL_BITMASK all;
if(*ndpi_info_mod == NULL) {
*ndpi_info_mod = ndpi_init_detection_module(prefs);
NDPI_BITMASK_SET_ALL(all);
ndpi_set_protocol_detection_bitmask2(*ndpi_info_mod, &all);
- if(enable_log) {
- NDPI_BITMASK_SET_ALL(debug_bitmask);
- ndpi_set_log_level(*ndpi_info_mod, 4);
- ndpi_set_debug_bitmask(*ndpi_info_mod, debug_bitmask);
- }
+#if 0
+ NDPI_PROTOCOL_BITMASK debug_bitmask;
+
+ NDPI_BITMASK_SET_ALL(debug_bitmask);
+ ndpi_set_log_level(*ndpi_info_mod, 4);
+ ndpi_set_debug_bitmask(*ndpi_info_mod, debug_bitmask);
+#endif
ndpi_load_protocols_file(*ndpi_info_mod, "protos.txt");
ndpi_load_categories_file(*ndpi_info_mod, "categories.txt", NULL);