blob: b3abb8b9166e67ec62b9b3a7933e494434e76f62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef RSPAMD_STATFILE_SYNC_H
#define RSPAMD_STATFILE_SYNC_H
#include "config.h"
#include "main.h"
#include "statfile.h"
#include "cfg_file.h"
/*
* Start synchronization of statfiles. Must be called after event_init as it adds events
*/
gboolean start_statfile_sync (statfile_pool_t *pool, struct config_file *cfg, struct event_base *ev_base);
#endif
|