aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/stun.c
diff options
context:
space:
mode:
authorNardi Ivan <nardi.ivan@gmail.com>2022-09-28 16:44:59 +0200
committerToni <matzeton@googlemail.com>2022-09-28 21:09:27 +0200
commita27538b764c85084980eef40cc7751c02a4af216 (patch)
tree3c63846a3ea970082d6fdf9a6c4dfffabbdbb274 /src/lib/protocols/stun.c
parentac7a3669dabef5b084f00c3a52fa6c63b0a0a768 (diff)
Remove unused code
LRU callbacks have been added in 460ff3c7a, but they have never been used and they have never been extended to the other LRU caches. `ndpi_search_tcp_or_udp()` basically returns the classification by port/ip of the flow; calling it from the dissector is useless. The same for TOR detection: ips are checked in the generic code
Diffstat (limited to 'src/lib/protocols/stun.c')
-rw-r--r--src/lib/protocols/stun.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/protocols/stun.c b/src/lib/protocols/stun.c
index a09e898d6..d60270ecc 100644
--- a/src/lib/protocols/stun.c
+++ b/src/lib/protocols/stun.c
@@ -96,12 +96,7 @@ static void ndpi_int_stun_add_connection(struct ndpi_detection_module_struct *nd
#endif
ndpi_lru_add_to_cache(ndpi_struct->stun_cache, key, app_proto);
- if(ndpi_struct->ndpi_notify_lru_add_handler_ptr)
- ndpi_struct->ndpi_notify_lru_add_handler_ptr(ndpi_stun_cache, key, app_proto);
-
ndpi_lru_add_to_cache(ndpi_struct->stun_cache, key_rev, app_proto);
- if(ndpi_struct->ndpi_notify_lru_add_handler_ptr)
- ndpi_struct->ndpi_notify_lru_add_handler_ptr(ndpi_stun_cache, key_rev, app_proto);
}
}
}