aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-03-21 15:56:01 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-03-21 15:56:01 +0100
commitc0b7bdacbc15c1cf5eaeb9faefc088aa698e94ba (patch)
tree90fcd8d0b791133082987af4aacbd24041e63bf3 /utils.c
parentdaaaa615197d8551457ecf926f6df30c6482a70a (diff)
Reworked nDPIsrvd.h C-API.
* nDPIsrvd.h: Provide nDPId thread storage. * nDPIsrvd.py: Fixed instance cleanup bug. * nDPIsrvd.h: Support for instance/thread user data and cleanup callback. * nDPIsrvd.h: Most recent flow time stored in thread ht instead of instance ht. * nDPId: Moved flow logger out the memory profilier into SIGUSR1 signal handling. * nDPId: Added signal fd to be usable within epoll's event handling (live-capture only!) * nDPId: Added information about ZLib compressions to daemon status/shutdown events. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils.c b/utils.c
index e75883978..ddbcddef5 100644
--- a/utils.c
+++ b/utils.c
@@ -1,7 +1,10 @@
+#include "utils.h"
+
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
+#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#ifndef NO_MAIN
@@ -11,8 +14,6 @@
#include <sys/types.h>
#include <unistd.h>
-#include "utils.h"
-
typedef char pid_str[16];
static char const * app_name = NULL;