diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-30 13:32:36 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-30 13:32:36 +0100 |
commit | 40c6406e4a8bf633fee611a8c0d5ff980f7d3836 (patch) | |
tree | 1e3a005b4c182781d8c1221e5d7c75e4fb398929 /config.h.in | |
parent | d6643f35d783784911ad2e2ca754bcfed29eb11d (diff) | |
download | rspamd-40c6406e4a8bf633fee611a8c0d5ff980f7d3836.tar.gz rspamd-40c6406e4a8bf633fee611a8c0d5ff980f7d3836.zip |
Remove memcached support.
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config.h.in b/config.h.in index d44f61636..b7d4ed74c 100644 --- a/config.h.in +++ b/config.h.in @@ -461,19 +461,19 @@ typedef off_t goffset; /* Forwarded declaration */ struct module_ctx; -struct config_file; +struct rspamd_config; struct rspamd_worker; typedef struct module_s { const gchar *name; - int (*module_init_func)(struct config_file *cfg, struct module_ctx **ctx); - int (*module_config_func)(struct config_file *cfg); - int (*module_reconfig_func)(struct config_file *cfg); + int (*module_init_func)(struct rspamd_config *cfg, struct module_ctx **ctx); + int (*module_config_func)(struct rspamd_config *cfg); + int (*module_reconfig_func)(struct rspamd_config *cfg); } module_t; typedef struct worker_s { const gchar *name; - gpointer (*worker_init_func)(struct config_file *cfg); + gpointer (*worker_init_func)(struct rspamd_config *cfg); void (*worker_start_func)(struct rspamd_worker *worker); gboolean has_socket; gboolean unique; |