diff options
author | Luca Deri <deri@ntop.org> | 2021-03-09 23:50:31 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-03-09 23:50:31 +0100 |
commit | 5c6f0700977eff8654790bfc5d083dbf3184c7b3 (patch) | |
tree | 3f1c0252c473139964e1cdddc238381f902dcbe3 | |
parent | f6ad16d8f8567c990431a6cd38cf5357d7a60723 (diff) |
Fixed nDPI prefs definition
-rw-r--r-- | src/include/ndpi_typedefs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index e2e27737c..35b3b95dd 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1450,10 +1450,10 @@ typedef u_int32_t ndpi_init_prefs; typedef enum { - ndpi_no_prefs = 0, - ndpi_dont_load_tor_hosts, - ndpi_dont_init_libgcrypt, - ndpi_enable_ja3_plus + ndpi_no_prefs = 0, + ndpi_dont_load_tor_hosts = 1, + ndpi_dont_init_libgcrypt = 2, + ndpi_enable_ja3_plus = 4 } ndpi_prefs; typedef struct { |