diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-01 17:35:47 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-10-01 17:35:47 +0100 |
commit | 6f8fa405cf5d394491b987d824f5e1b74c14a4c8 (patch) | |
tree | 461a516b628265e9e4767f890f13766218535b41 /src/libutil/radix.h | |
parent | ebdf58dc0aed1014374dc56c0b28fe76f3b0c0b1 (diff) | |
download | rspamd-6f8fa405cf5d394491b987d824f5e1b74c14a4c8.tar.gz rspamd-6f8fa405cf5d394491b987d824f5e1b74c14a4c8.zip |
Rework parsing of ip lists.
Diffstat (limited to 'src/libutil/radix.h')
-rw-r--r-- | src/libutil/radix.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libutil/radix.h b/src/libutil/radix.h index abe2a2899..b17731fd7 100644 --- a/src/libutil/radix.h +++ b/src/libutil/radix.h @@ -130,4 +130,11 @@ radix_compressed_t *radix_create_compressed (void); gint rspamd_radix_add_iplist (const gchar *list, const gchar *separators, radix_compressed_t *tree); +/** + * Generic version of @see rspamd_radix_add_iplist. This function creates tree + * if `tree` is NULL. + */ +gboolean radix_add_generic_iplist (const gchar *ip_list, + radix_compressed_t **tree); + #endif |