diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2022-09-28 16:44:59 +0200 |
---|---|---|
committer | Toni <matzeton@googlemail.com> | 2022-09-28 21:09:27 +0200 |
commit | a27538b764c85084980eef40cc7751c02a4af216 (patch) | |
tree | 3c63846a3ea970082d6fdf9a6c4dfffabbdbb274 /src/lib/protocols/tcp_udp.c | |
parent | ac7a3669dabef5b084f00c3a52fa6c63b0a0a768 (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/tcp_udp.c')
-rw-r--r-- | src/lib/protocols/tcp_udp.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/protocols/tcp_udp.c b/src/lib/protocols/tcp_udp.c index dd25292f5..9aa0349f0 100644 --- a/src/lib/protocols/tcp_udp.c +++ b/src/lib/protocols/tcp_udp.c @@ -21,8 +21,6 @@ #include "ndpi_api.h" -/* ndpi_main.c */ -extern u_int8_t ndpi_is_tor_flow(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow); u_int ndpi_search_tcp_or_udp_raw(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow, @@ -60,11 +58,6 @@ void ndpi_search_tcp_or_udp(struct ndpi_detection_module_struct *ndpi_struct, st if(flow->host_server_name[0] != '\0') return; - if(ndpi_is_tor_flow(ndpi_struct, flow)) { - ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_TOR, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI); - return; - } - if(packet->udp) sport = ntohs(packet->udp->source), dport = ntohs(packet->udp->dest); else if(packet->tcp) sport = ntohs(packet->tcp->source), dport = ntohs(packet->tcp->dest); else sport = dport = 0; |