diff options
author | Nardi Ivan <nardi.ivan@gmail.com> | 2024-06-14 20:20:58 +0200 |
---|---|---|
committer | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2024-06-17 10:19:55 +0200 |
commit | 526cf6f2919398e1c9c5698b1b5783f18ed41fff (patch) | |
tree | 52efef17aefb9aa01ca702b53b4831a199b17b5e /src/lib/ndpi_utils.c | |
parent | 2bedd14aae1294528bafbe03b9307a4eacb09bcb (diff) |
Zoom: remove "stun_zoom" LRU cache
Since 070a0908b we are able to detect P2P calls directly from the packet
content, without any correlation among flows
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 9c0819747..9e1ac6f12 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -3215,7 +3215,7 @@ int64_t ndpi_strtonum(const char *numstr, int64_t minval, int64_t maxval, const const char *ndpi_lru_cache_idx_to_name(lru_cache_type idx) { const char *names[NDPI_LRUCACHE_MAX] = { "ookla", "bittorrent", "stun", - "tls_cert", "mining", "msteams", "stun_zoom" }; + "tls_cert", "mining", "msteams" }; if(idx < 0 || idx >= NDPI_LRUCACHE_MAX) return "unknown"; |