diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-03-31 09:33:02 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-03-31 09:33:02 +0100 |
commit | 7f72ec81a58eb6ed217c78f4a300781450350568 (patch) | |
tree | 8f750308db7b01f1add6a9fe9522328c7dccb6e9 /src/libutil/util.h | |
parent | 2fae860a476986fa46f1c6c33a95d8cbef832b68 (diff) | |
download | rspamd-7f72ec81a58eb6ed217c78f4a300781450350568.tar.gz rspamd-7f72ec81a58eb6ed217c78f4a300781450350568.zip |
[Feature] Use XXH64 on 64 bits platforms only
Diffstat (limited to 'src/libutil/util.h')
-rw-r--r-- | src/libutil/util.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libutil/util.h b/src/libutil/util.h index 43b0eb01b..ec8150fae 100644 --- a/src/libutil/util.h +++ b/src/libutil/util.h @@ -204,14 +204,6 @@ void g_queue_free_full (GQueue *queue, GDestroyNotify free_func); #define ts_to_usec(ts) ((ts)->tv_sec * 1000000LLU + \ (ts)->tv_nsec / 1000LLU) -guint rspamd_url_hash (gconstpointer u); - -/* Compare two emails for building emails hash */ -gboolean rspamd_emails_cmp (gconstpointer a, gconstpointer b); - -/* Compare two urls for building emails hash */ -gboolean rspamd_urls_cmp (gconstpointer a, gconstpointer b); - /** * Try to allocate a file on filesystem (using fallocate or posix_fallocate) * @param fd descriptor |