diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-30 13:26:51 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-30 13:26:51 +0100 |
commit | d6643f35d783784911ad2e2ca754bcfed29eb11d (patch) | |
tree | 55554d57d4439e278788a261eb5ad7e5016a1372 /src/libserver/statfile.h | |
parent | 7e66b3bd08dbca9356013a3777f786076d1dacea (diff) | |
download | rspamd-d6643f35d783784911ad2e2ca754bcfed29eb11d.tar.gz rspamd-d6643f35d783784911ad2e2ca754bcfed29eb11d.zip |
Refactor config API.
Diffstat (limited to 'src/libserver/statfile.h')
-rw-r--r-- | src/libserver/statfile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libserver/statfile.h b/src/libserver/statfile.h index 5786c4927..3ad5f1321 100644 --- a/src/libserver/statfile.h +++ b/src/libserver/statfile.h @@ -96,8 +96,8 @@ typedef struct statfile_pool_s { } statfile_pool_t; /* Forwarded declarations */ -struct classifier_config; -struct statfile; +struct rspamd_classifier_config; +struct rspamd_statfile_config; /** * Create new statfile pool @@ -278,7 +278,7 @@ void statfile_pool_plan_invalidate (statfile_pool_t *pool, time_t seconds, time_ * @param st statfile to get * @param try_create whether we need to create statfile if it is absent */ -stat_file_t* get_statfile_by_symbol (statfile_pool_t *pool, struct classifier_config *ccf, - const gchar *symbol, struct statfile **st, gboolean try_create); +stat_file_t* get_statfile_by_symbol (statfile_pool_t *pool, struct rspamd_classifier_config *ccf, + const gchar *symbol, struct rspamd_statfile_config **st, gboolean try_create); #endif |