master-service-settings.h revision 194755bdfb97c07ca8b9df071099f68947b971e3
#ifndef MASTER_SERVICE_SETTINGS_H
#define MASTER_SERVICE_SETTINGS_H
#include "network.h"
struct setting_parser_info;
struct dynamic_settings_parser;
struct master_service;
struct master_service_settings {
const char *log_path;
const char *info_log_path;
const char *debug_log_path;
const char *log_timestamp;
const char *syslog_facility;
bool version_ignore;
bool shutdown_clients;
};
struct master_service_settings_input {
const struct setting_parser_info **roots;
const struct dynamic_settings_parser *dyn_parsers;
struct setting_parser_info *dyn_parsers_parent;
const char *config_path;
bool preserve_home;
bool never_exec;
const char *module;
const char *service;
const char *username;
const char *local_host, *remote_host;
};
struct master_service_settings_output {
/* if service was not given for lookup, this contains names of services
that have more specific settings */
const char *const *specific_services;
/* some settings for this service (or if service was not given,
(but this lookup didn't necessarily return any of them). */
unsigned int service_uses_local:1;
unsigned int service_uses_remote:1;
/* returned settings contain settings specific to given
unsigned int used_local:1;
unsigned int used_remote:1;
};
extern const struct setting_parser_info master_service_setting_parser_info;
const struct master_service_settings_input *input,
struct master_service_settings_output *output_r,
const char **error_r);
const struct setting_parser_info **roots,
const char **error_r);
/* destroy settings parser and clear service's set_pool, so that
master_service_settings_read*() can be called without freeing memory used
by existing settings structures. */
const struct master_service_settings *
#endif