diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2022-09-22 17:42:46 +0200 |
---|---|---|
committer | Toni <matzeton@googlemail.com> | 2022-09-23 18:33:48 +0200 |
commit | 1f345b311f7f4bb3246a649ced3cec11d742b6e4 (patch) | |
tree | af829d9cfa5840f44d7207c2554107f65de55f47 /example/ndpiReader.c | |
parent | 83de3e4716eb7dcc373f0fcad4b59e83ea140fb1 (diff) |
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.
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 3dde6be3c..921727291 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -2427,6 +2427,10 @@ static void setupDetection(u_int16_t thread_id, pcap_t * pcap_handle) { if(_maliciousSHA1Path) ndpi_load_malicious_sha1_file(ndpi_thread_info[thread_id].workflow->ndpi_struct, _maliciousSHA1Path); + /* Enable/disable/configure LRU caches here */ + ndpi_set_lru_cache_size(ndpi_thread_info[thread_id].workflow->ndpi_struct, + NDPI_LRUCACHE_BITTORRENT, 32768); + ndpi_finalize_initialization(ndpi_thread_info[thread_id].workflow->ndpi_struct); if(enable_doh_dot_detection) |