diff options
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/src/hash.h b/src/hash.h index 8f87bb10e..4a1e973fb 100644 --- a/src/hash.h +++ b/src/hash.h @@ -1,17 +1,7 @@ -/* - * ===================================================================================== - * - * Filename: hash.h - * - * Description: Hash table implementation that uses memory pools from mem_pool library - * - * Created: 27.01.2009 16:31:11 - * Compiler: gcc - * - * Author: Vsevolod Stakhov - * Company: Rambler - * - * ===================================================================================== +/** + * @file hash.h + * Hash table implementation that allows using memory pools for storage as well as using + * shared memory for this purpose */ #ifndef RSPAMD_HASH_H @@ -21,11 +11,6 @@ #include <glib.h> #include "mem_pool.h" -/** - * Hash table implementation that allows using memory pools for storage as well as using - * shared memory for this purpose - */ - struct rspamd_hash_node { gpointer key; gpointer value; |