diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-14 11:03:31 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-14 11:03:31 +0000 |
commit | 61330ef453ae1eb997b2567928587d3c71daf87f (patch) | |
tree | 2e70276811cb3b5fc5aa3ecfd2487d22faafb9f6 /src/libutil/addr.h | |
parent | 5468736cc812d942b34795cfb6e29ac43739aa0d (diff) | |
download | rspamd-61330ef453ae1eb997b2567928587d3c71daf87f.tar.gz rspamd-61330ef453ae1eb997b2567928587d3c71daf87f.zip |
Add routines to use rspamd_inet_addr_t in hash tables
Diffstat (limited to 'src/libutil/addr.h')
-rw-r--r-- | src/libutil/addr.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libutil/addr.h b/src/libutil/addr.h index d686fa52a..fa2e4e65b 100644 --- a/src/libutil/addr.h +++ b/src/libutil/addr.h @@ -249,4 +249,15 @@ gint rspamd_inet_address_compare_ptr (gconstpointer a1, */ rspamd_inet_addr_t *rspamd_inet_address_copy (const rspamd_inet_addr_t *addr); +/** + * Returns hash for inet address + */ +guint rspamd_inet_address_hash (gconstpointer a); + + +/** + * Returns true if two address are equal + */ +gboolean rspamd_inet_address_equal (gconstpointer a, gconstpointer b); + #endif /* ADDR_H_ */ |