From e8e4b9e8fff7a71e2770ff5a38e92506b508c72f Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Fri, 27 Oct 2023 13:58:15 +0200 Subject: IPv6: add support for IPv6 risk tree (#2118) Fix the script to download crawler addressess --- src/include/ndpi_typedefs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/include/ndpi_typedefs.h') diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 51328943f..5f587e8d2 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -693,6 +693,7 @@ typedef enum { typedef enum { NDPI_PTREE_RISK_MASK = 0, NDPI_PTREE_RISK, + NDPI_PTREE_RISK6, NDPI_PTREE_PROTOCOLS, NDPI_PTREE_PROTOCOLS6, @@ -1311,6 +1312,7 @@ struct ndpi_detection_module_struct { /* Patricia trees */ ndpi_patricia_tree_t *ip_risk_mask_ptree; ndpi_patricia_tree_t *ip_risk_ptree; + ndpi_patricia_tree_t *ip_risk_ptree6; ndpi_patricia_tree_t *protocols_ptree; /* IP-based protocol detection */ ndpi_patricia_tree_t *protocols_ptree6; -- cgit v1.2.3