diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-04 14:54:50 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-04 14:54:50 +0200 |
commit | 33a2de703db162af0c3d77593d560f3a8e7f1b95 (patch) | |
tree | 27faa858db7496fce73e9b3faf820e3a2ae89c13 /src/config.c | |
parent | 813535cfe40e103a79b1f24f66ee2b1cac58ae05 (diff) | |
download | fastd-33a2de703db162af0c3d77593d560f3a8e7f1b95.tar fastd-33a2de703db162af0c3d77593d560f3a8e7f1b95.zip |
Add pidfile support
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index a77c258..c28de7f 100644 --- a/src/config.c +++ b/src/config.c @@ -92,6 +92,8 @@ static void default_config(fastd_config *conf) { conf->on_disestablish_dir = NULL; conf->daemon = false; + conf->pid_file = NULL; + conf->machine_readable = false; conf->generate_key = false; conf->show_key = false; @@ -374,6 +376,7 @@ static void count_peers(fastd_context *ctx, fastd_config *conf) { OPTION(usage, "--help" OR "-h", "Shows this help text") \ OPTION(version, "--version" OR "-v", "Shows the fastd version") \ OPTION(option_daemon, "--daemon" OR "-d", "Runs fastd in the background") \ + OPTION_ARG(option_pid_file, "--pid-file", "<filename>", "Writes fastd's PID to the specified file") \ OPTION_ARG(option_log_level, "--log-level", "error|warn|info|verbose|debug", "Sets the stderr log level; default is info, if no alternative log destination ist configured") \ OPTION_ARG(option_syslog_level, "--syslog-level", "error|warn|info|verbose|debug", "Sets the log level for syslog output; default is not to use syslog") \ OPTION_ARG(option_syslog_ident, "--syslog-ident", "<ident>", "Sets the syslog identification; default is 'fastd'") \ @@ -614,6 +617,12 @@ static void option_on_disestablish(fastd_context *ctx, fastd_config *conf, const static void option_daemon(fastd_context *ctx, fastd_config *conf) { conf->daemon = true; } + +static void option_pid_file(fastd_context *ctx, fastd_config *conf, const char *arg) { + free(conf->pid_file); + conf->pid_file = strdup(arg); +} + static void option_generate_key(fastd_context *ctx, fastd_config *conf) { conf->generate_key = true; conf->show_key = false; |