master-service.h revision 6d2b3ce2c6ef62334985ece4f0ab8b154e0e9560
#ifndef MASTER_SERVICE_H
#define MASTER_SERVICE_H
#include "network.h"
enum master_service_flags {
MASTER_SERVICE_FLAG_STD_CLIENT = 0x01,
/* this process is currently running standalone without a master */
MASTER_SERVICE_FLAG_STANDALONE = 0x02,
/* Log to stderr instead of the configured log file */
};
struct master_service;
const char *master_service_getopt_string(void);
/* Start service initialization. */
struct master_service *
/* Parser command line option. Returns TRUE if processed. */
/* Clean environment from everything except TZ, USER and optionally HOME. */
void master_service_env_clean(bool preserve_home);
/* Initialize logging. */
const char *prefix);
/* Returns configuration file path. */
/* Returns PACKAGE_VERSION or NULL if version_ignore=yes. This function is
useful mostly as parameter to module_dir_load(). */
/* Start the service. Blocks until finished */
/* Stop a running service. */
/* Deinitialize the service. */
#endif