view src/lib-master/master-service-settings-cache.h @ 22652:09523ad05bef

director: Log whenever HOST-RESET-USERS is used
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sun, 05 Nov 2017 22:53:23 +0200
parents c93ca5e46a8a
children 6b75bab3ec79
line wrap: on
line source

#ifndef MASTER_SERVICE_SETTINGS_CACHE_H
#define MASTER_SERVICE_SETTINGS_CACHE_H

struct master_service_settings_cache *
master_service_settings_cache_init(struct master_service *service,
				   const char *module,
				   const char *service_name);
void master_service_settings_cache_deinit(struct master_service_settings_cache **cache);

int master_service_settings_cache_read(struct master_service_settings_cache *cache,
				       const struct master_service_settings_input *input,
				       const struct dynamic_settings_parser *dyn_parsers,
				       const struct setting_parser_context **parser_r,
				       const char **error_r) ATTR_NULL(3);

#endif