diff options
Diffstat (limited to 'src/options.def.h')
-rw-r--r-- | src/options.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options.def.h b/src/options.def.h index 114b6e9..9ea0476 100644 --- a/src/options.def.h +++ b/src/options.def.h @@ -2,6 +2,9 @@ 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"); +#ifdef WITH_STATUS_SOCKET +OPTION_ARG(option_status_socket, "--status-socket", "<socket>", "Configure a socket to get fastd's status"); +#endif SEPARATOR; OPTION_ARG(option_config, "--config" OR "-c", "<filename>", "Loads a config file"); |