diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2008-09-03 19:13:24 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2008-09-03 19:13:24 +0400 |
commit | b58d2b7e4d76f3c6a60dbb3d49ad782d53b239e7 (patch) | |
tree | b8fea2eb7c1db9f4760d472d04b26d1daafe74ce /config.h.in | |
parent | 2809ad4747b7e3a3795aec4e433d7754c7efc365 (diff) | |
download | rspamd-b58d2b7e4d76f3c6a60dbb3d49ad782d53b239e7.tar.gz rspamd-b58d2b7e4d76f3c6a60dbb3d49ad782d53b239e7.zip |
* Add initial implementation of surbl check module
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.h.in b/config.h.in index 7b17b3427..36d67d56e 100644 --- a/config.h.in +++ b/config.h.in @@ -2,10 +2,11 @@ /* Forwarded declaration */ struct module_ctx; +struct config_file; typedef struct module_s { const char *name; - int (*module_init_func)(struct module_ctx *ctx); + int (*module_init_func)(struct config_file *cfg, struct module_ctx **ctx); } module_t; extern module_t modules[]; |