summaryrefslogtreecommitdiffstats
path: root/src/replication/replicator/replicator-settings.h
blob: 947bcf8e3150176bfa405e97e7468394390aea06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef REPLICATOR_SETTINGS_H
#define REPLICATOR_SETTINGS_H

struct replicator_settings {
	const char *auth_socket_path;
	const char *doveadm_socket_path;
	const char *replication_dsync_parameters;

	unsigned int replication_full_sync_interval;
	unsigned int replication_max_conns;
};

extern const struct setting_parser_info replicator_setting_parser_info;
extern const struct replicator_settings *replicator_settings;

#endif