From 1f345b311f7f4bb3246a649ced3cec11d742b6e4 Mon Sep 17 00:00:00 2001 From: Nardi Ivan Date: Thu, 22 Sep 2022 17:42:46 +0200 Subject: Sizes of LRU caches are now configurable 0 as size value disable the cache. The diffs in unit tests are due to the fact that some lookups are performed before the first insert: before this change these lookups weren't counted because the cache was not yet initialized, now they are. --- src/lib/protocols/bittorrent.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/lib/protocols/bittorrent.c') diff --git a/src/lib/protocols/bittorrent.c b/src/lib/protocols/bittorrent.c index c28c8bcd4..cac66b6be 100644 --- a/src/lib/protocols/bittorrent.c +++ b/src/lib/protocols/bittorrent.c @@ -118,9 +118,6 @@ static void ndpi_add_connection_as_bittorrent(struct ndpi_detection_module_struc flow->extra_packets_func = search_bittorrent_again; } - if(ndpi_struct->bittorrent_cache == NULL) - ndpi_struct->bittorrent_cache = ndpi_lru_cache_init(32768); - if(ndpi_struct->bittorrent_cache && packet->iph) { u_int32_t key1, key2, i; -- cgit v1.2.3