diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-13 20:54:13 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-13 20:54:13 +0400 |
commit | a8cdd33ac7ee59e195dca03a395c264877ee5168 (patch) | |
tree | 077413b678005aad4f66dbeae82a982cb71ce75f /src/perl.h | |
parent | 74b38eb87d0ee6e401e06d8c604d55be2d93a1b2 (diff) | |
download | rspamd-a8cdd33ac7ee59e195dca03a395c264877ee5168.tar.gz rspamd-a8cdd33ac7ee59e195dca03a395c264877ee5168.zip |
* Rework the whole filters system
* Add metrics optimization and symbols cache
* Change all plugins
[DRAGONS]: not for production usage, some things are still not working!
Diffstat (limited to 'src/perl.h')
-rw-r--r-- | src/perl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/perl.h b/src/perl.h index 9b1f8af63..109ead48d 100644 --- a/src/perl.h +++ b/src/perl.h @@ -12,10 +12,7 @@ struct config_file; void init_perl_filters (struct config_file *cfg); -int perl_call_header_filter (const char *function, struct worker_task *task); -int perl_call_mime_filter (const char *function, struct worker_task *task); -int perl_call_message_filter (const char *function, struct worker_task *task); -int perl_call_url_filter (const char *function, struct worker_task *task); +int perl_call_filter (const char *function, struct worker_task *task); int perl_call_chain_filter (const char *function, struct worker_task *task, int *marks, unsigned int number); void perl_call_memcached_callback (memcached_ctx_t *ctx, memc_error_t error, void *data); |