diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-02-24 18:51:13 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-02-24 18:51:13 +0300 |
commit | 121efbcddf8ec41eea91aa80574dab3730bf8976 (patch) | |
tree | 2d39b5895526d63c7994aa81575c2db15a46cee1 /src/main.h | |
parent | 7eb9b642db888b26a97b06394695e55173c45895 (diff) | |
download | rspamd-121efbcddf8ec41eea91aa80574dab3730bf8976.tar.gz rspamd-121efbcddf8ec41eea91aa80574dab3730bf8976.zip |
* Rewrite URL storage system
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h index acbfe8a72..e6cf67078 100644 --- a/src/main.h +++ b/src/main.h @@ -203,8 +203,8 @@ struct worker_task { GList *text_parts; /**< list of text parts */ gchar *raw_headers; /**< list of raw headers */ GList *received; /**< list of received headers */ - GList *urls; /**< list of parsed urls */ - GList *emails; /**< list of parsed emails */ + GTree *urls; /**< list of parsed urls */ + GTree *emails; /**< list of parsed emails */ GList *images; /**< list of images */ GList *raw_headers_list; /**< list of raw headers */ GHashTable *results; /**< hash table of metric_result indexed by |