diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-11-18 11:26:05 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-11-21 11:26:05 +0100 |
commit | 64f6abfdbedf00994f3614757efbeabe14afd87e (patch) | |
tree | 28946fd8385147a80abe006b8739cad383bf248e /utils.c | |
parent | 77ee336cc941694b078906b7afda51dd21538450 (diff) |
Unified nDPId/nDPIsrvd command line argument storage.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 40 |
1 files changed, 38 insertions, 2 deletions
@@ -6,6 +6,7 @@ #include <pwd.h> #include <stdarg.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #ifndef NO_MAIN #include <syslog.h> @@ -21,6 +22,42 @@ static int daemonize = 0; static int log_to_console = 0; static int log_to_file_fd = -1; +void set_cmdarg(struct cmdarg * const ca, char const * const val) +{ + if (ca == NULL || val == NULL) + { + return; + } + + free(ca->value); + ca->value = strdup(val); +} + +char const * get_cmdarg(struct cmdarg const * const ca) +{ + if (ca == NULL) + { + return NULL; + } + + if (ca->value != NULL) + { + return ca->value; + } + + return ca->default_value; +} + +int is_cmdarg_set(struct cmdarg const * const ca) +{ + if (ca == NULL) + { + return 0; + } + + return ca->value != NULL; +} + void daemonize_enable(void) { daemonize = 1; @@ -182,8 +219,7 @@ int change_user_group(char const * const user, if (uds_collector_path != NULL) { errno = 0; - if (chmod(uds_collector_path, S_IRUSR | S_IWUSR) != 0 || - chown(uds_collector_path, pwd->pw_uid, gid) != 0) + if (chmod(uds_collector_path, S_IRUSR | S_IWUSR) != 0 || chown(uds_collector_path, pwd->pw_uid, gid) != 0) { return -errno; } |