diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-21 13:39:39 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-21 13:39:39 +0100 |
commit | 5f25b69c03972b0adff6bc649e1922111d0ebb2b (patch) | |
tree | 62fb361ba8eab64f59a1874e5d045d404727ae4e /src/view.h | |
parent | bc997b7b94a36103a3d409d0de422a71df0a19d6 (diff) | |
download | rspamd-5f25b69c03972b0adff6bc649e1922111d0ebb2b.tar.gz rspamd-5f25b69c03972b0adff6bc649e1922111d0ebb2b.zip |
Refactor worker task structure and API.
Diffstat (limited to 'src/view.h')
-rw-r--r-- | src/view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view.h b/src/view.h index cb6fc6505..ecefa83cb 100644 --- a/src/view.h +++ b/src/view.h @@ -82,7 +82,7 @@ gboolean add_view_symbols (struct rspamd_view *view, const gchar *line); * @param task task object * @return whether to check this symbol for this task */ -gboolean check_view (GList *views, const gchar *symbol, struct worker_task *task); +gboolean check_view (GList *views, const gchar *symbol, struct rspamd_task *task); /** * Check whether this task should be skipped from checks @@ -90,6 +90,6 @@ gboolean check_view (GList *views, const gchar *symbol, struct worker_task *task * @param task task object * @return */ -gboolean check_skip (GList *views, struct worker_task *task); +gboolean check_skip (GList *views, struct rspamd_task *task); #endif |