diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-06 17:31:26 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-03-06 17:38:05 +0100 |
commit | 46f68501d575431656b5254a4bda8acb2982ab77 (patch) | |
tree | 030c68ea408f61de131b93a51b1394648c4a7b85 /config.h | |
parent | 9db048c9d93a00adf4b258d2341b24229d2a45a1 (diff) |
Added daemon event: DAEMON_EVENT_STATUS (periodically send's daemon statistics.)
* Improved distributor timeout handling (per-thread).
* flow-info.py / flow-dash.py: Distinguish between flow risk severities.
* nDPId: Skip tag switch datalink packet dissection / processing.
* nDPId: Fixed incorrect value for current active flows.
* Improved JSON schema's.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,7 +11,7 @@ * NOTE: Buffer size needs to keep in sync with other implementations * e.g. dependencies/nDPIsrvd.py */ -#define NETWORK_BUFFER_MAX_SIZE 13312u /* 8192 + 4096 + 1024 */ +#define NETWORK_BUFFER_MAX_SIZE 16384u /* 8192 + 8192 */ #define NETWORK_BUFFER_LENGTH_DIGITS 5u #define NETWORK_BUFFER_LENGTH_DIGITS_STR "5" @@ -21,6 +21,7 @@ #define nDPId_MAX_IDLE_FLOWS_PER_THREAD (nDPId_MAX_FLOWS_PER_THREAD / 32u) #define nDPId_TICK_RESOLUTION 1000u #define nDPId_MAX_READER_THREADS 32u +#define nDPId_DAEMON_STATUS_INTERVAL 600000u /* 600 sec */ #define nDPId_MEMORY_PROFILING_LOG_INTERVAL 5000u /* 5 sec */ #define nDPId_COMPRESSION_SCAN_INTERVAL 20000u /* 20 sec */ #define nDPId_COMPRESSION_FLOW_INACTIVITY 30000u /* 30 sec */ |