diff options
author | Luca Deri <deri@ntop.org> | 2024-05-07 23:42:32 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2024-05-07 23:42:32 +0200 |
commit | 2b4e2f9c9a5befc011c5743fee29dafa273ad6cb (patch) | |
tree | c55bd5b86444af687519cb3bf2f98647bf43467a /src | |
parent | 5f8ad0527d20567c40311d0b04bf71ccdc1e5f2c (diff) |
Removed trace
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ndpi_main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 840f862e2..c41bb1e02 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -2756,7 +2756,7 @@ int ndpi_load_ptree_file(ndpi_patricia_tree_t *ptree, fd = fopen(path, "r"); if(fd == NULL) { - NDPI_LOG_ERR(NULL, "Unable to open file %s [%s]\n", path, strerror(errno)); + /* NDPI_LOG_ERR(NULL, "Unable to open file %s [%s]\n", path, strerror(errno)); */ return(-1); } @@ -2866,9 +2866,10 @@ static void ndpi_init_ptree_ipv6(struct ndpi_detection_module_struct *ndpi_str, rc = inet_pton(AF_INET6, host_list[i].network, &pin); if (rc != 1) { - NDPI_LOG_ERR(ndpi_str, "Invalid ipv6 address [%s]: %d\n", host_list[i].network, rc); - continue; + NDPI_LOG_ERR(ndpi_str, "Invalid ipv6 address [%s]: %d\n", host_list[i].network, rc); + continue; } + if((node = add_to_ptree(ptree, AF_INET6, &pin, host_list[i].cidr /* bits */)) != NULL) { node->value.u.uv16[0].user_value = host_list[i].value, node->value.u.uv16[0].additional_user_value = 0; } |