diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-03 17:24:37 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-03 17:24:37 +0400 |
commit | ad56efc14e371b6a452c1ccc46aa68d800125468 (patch) | |
tree | b2dbc42171dc5c846dfc3240e760cc6f0f2dad9a /src/html.h | |
parent | 7348a381a903eea67611fbce0782cf968b965ebf (diff) | |
download | rspamd-ad56efc14e371b6a452c1ccc46aa68d800125468.tar.gz rspamd-ad56efc14e371b6a452c1ccc46aa68d800125468.zip |
* Extract url encoded urls from html texts
Diffstat (limited to 'src/html.h')
-rw-r--r-- | src/html.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/html.h b/src/html.h index 70f20de49..1a7924e08 100644 --- a/src/html.h +++ b/src/html.h @@ -204,7 +204,10 @@ struct html_node { int flags; }; -gboolean add_html_node (memory_pool_t *pool, struct mime_text_part *part, char *tag_text, GNode **cur_level); +/* Forwarded declaration */ +struct worker_task; + +gboolean add_html_node (struct worker_task *task, memory_pool_t *pool, struct mime_text_part *part, char *tag_text, GNode **cur_level); struct html_tag * get_tag_by_name (const char *name); #endif |