command.c: Trivial whitespace fixes.
[paraslash.git] / daemon.h
1 /** \file daemon.h exported symbols from daemon.c */
2
3
4 void daemonize(bool parent_waits);
5 void daemon_open_log_or_die(void);
6 void daemon_close_log(void);
7 void daemon_log_welcome(const char *whoami);
8 void daemon_drop_privileges_or_die(const char *username, const char *groupname);
9 void daemon_set_start_time(void);
10 time_t daemon_get_uptime(const struct timeval *current_time);
11 __malloc char *daemon_get_uptime_str(const struct timeval *current_time);
12 void daemon_set_logfile(char *logfile_name);
13 void daemon_set_flag(unsigned flag);
14 void daemon_clear_flag(unsigned flag);
15 void daemon_set_loglevel(char *loglevel);
16 void daemon_set_default_log_colors(void);
17 void daemon_set_log_color_or_die(char const *arg);
18 __printf_2_3 void daemon_log(int ll, const char* fmt,...);
19
20 /** Daemon log configuration flags. */
21 enum daemon_flags {
22         /** Whether the hostname should be logged. */
23         DF_LOG_HOSTNAME = 1,
24         /** Whether the PID should be logged. */
25         DF_LOG_PID = 2,
26         /** Prepend log message with date and time. */
27         DF_LOG_TIME = 4,
28         /** Also print the loglevel for each message. */
29         DF_LOG_LL = 8,
30         /** Use colored output. */
31         DF_COLOR_LOG = 16,
32         /** Include milliseconds in log output. */
33         DF_LOG_TIMING = 32
34 };