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/mongodb.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/mongodb.c')
-rw-r--r-- | src/lib/protocols/mongodb.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/protocols/mongodb.c b/src/lib/protocols/mongodb.c index 1404cf3ba..83235be1a 100644 --- a/src/lib/protocols/mongodb.c +++ b/src/lib/protocols/mongodb.c @@ -53,11 +53,6 @@ static void set_mongodb_detected(struct ndpi_detection_module_struct *ndpi_struc struct ndpi_flow_struct *flow) { if(flow->detected_protocol_stack[0] == NDPI_PROTOCOL_UNKNOWN) { - ndpi_search_tcp_or_udp(ndpi_struct, flow); - - /* If no custom protocol has been detected */ - /* if(flow->detected_protocol_stack[0] == NDPI_PROTOCOL_UNKNOWN) */ - ndpi_int_reset_protocol(flow); ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_MONGODB, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI); } } |