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