diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2024-10-08 10:41:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 10:41:53 +0200 |
commit | a01499ae5448c932ebde6c412c316c15e922787c (patch) | |
tree | 83635ca081453ed0ea5fb836ca342c06829947d6 /windows/src/ndpi_define.h | |
parent | 89316ab4c0df6222125da1f8fa95bf1ee3a0d974 (diff) |
TTL Cache Fix (#2582)
* Added missing free
* Win fix
Diffstat (limited to 'windows/src/ndpi_define.h')
-rw-r--r-- | windows/src/ndpi_define.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/windows/src/ndpi_define.h b/windows/src/ndpi_define.h index 1e16e2117..f03f41cb5 100644 --- a/windows/src/ndpi_define.h +++ b/windows/src/ndpi_define.h @@ -152,6 +152,7 @@ #define ndpi_min(a,b) ((a < b) ? a : b) #define ndpi_max(a,b) ((a > b) ? a : b) +#define NDPI_NUM_DEFAULT_ROOT_NODES 512 #define NDPI_IPSEC_PROTOCOL_ESP 50 #define NDPI_IPSEC_PROTOCOL_AH 51 |