mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-05 10:41:40 +00:00
Add monitoring capability (#2588)
Allow nDPI to process the entire flows and not only the first N packets. Usefull when the application is interested in some metadata spanning the entire life of the session. As initial step, only STUN flows can be put in monitoring. See `doc/monitoring.md` for further details. This feature is disabled by default. Close #2583
This commit is contained in:
parent
44d0d9454c
commit
521d0ca7a0
29 changed files with 813 additions and 42 deletions
|
|
@ -14,6 +14,7 @@ int malloc_size_stats = 0;
|
|||
FILE *fingerprint_fp = NULL;
|
||||
bool do_load_lists = false;
|
||||
char *addr_dump_path = NULL;
|
||||
int monitoring_enabled = 0;
|
||||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
FuzzedDataProvider fuzzed_data(data, size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue