diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2025-02-17 15:16:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-17 15:16:37 +0100 |
commit | 5f8545d97a59ec8d21e6a7db0341f8d436379a1a (patch) | |
tree | 1071d064ac9cb41985bd91b5a47e7eb5a4b727ed /src/lib/ndpi_main.c | |
parent | 491698fe0291c6bb2f15f51f77d3854ad4917337 (diff) |
SSDP: add configuration for disabling metadata extraction (#2736)
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 1831b7ecf..86d9e02f1 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -11776,6 +11776,8 @@ static const struct cfg_param { { "bittorrent", "metadata.hash", "enable", NULL, NULL, CFG_PARAM_ENABLE_DISABLE, __OFF(bittorrent_hash_enabled), NULL }, + { "ssdp", "metadata", "enable", NULL, NULL, CFG_PARAM_ENABLE_DISABLE, __OFF(ssdp_metadata_enabled), NULL }, + { "dns", "subclassification", "disable", NULL, NULL, CFG_PARAM_ENABLE_DISABLE, __OFF(dns_subclassification_enabled), NULL }, { "dns", "process_response", "enable", NULL, NULL, CFG_PARAM_ENABLE_DISABLE, __OFF(dns_parse_response_enabled), NULL }, |