diff options
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 4bea3d08e..b657316ad 100644 --- a/src/util.h +++ b/src/util.h @@ -3,6 +3,7 @@ #include "config.h" #include "mem_pool.h" +#include "radix.h" struct config_file; struct rspamd_main; @@ -65,6 +66,10 @@ void set_counter (const char *name, long int value); gboolean parse_host_list (memory_pool_t *pool, GHashTable *tbl, const char *filename); gboolean maybe_parse_host_list (memory_pool_t *pool, GHashTable *tbl, const char *filename); +gboolean parse_radix_list (memory_pool_t *pool, radix_tree_t *tree, const char *filename); + +guint rspamd_strcase_hash (gconstpointer key); +gint rspamd_strcase_equal (gconstpointer v, gconstpointer v2); #endif |