summaryrefslogtreecommitdiffstats
path: root/src/hash.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-02-06 15:00:38 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-02-06 15:00:38 +0300
commit7f8de787946b883cc791bf6c0bcb514496caf074 (patch)
tree8c828243de051ba25ed3806d2a4fca9eaf3cae83 /src/hash.h
parenta3c3fb96d13f2cbfc5ab984c1886441ec0e9b47b (diff)
downloadrspamd-7f8de787946b883cc791bf6c0bcb514496caf074.tar.gz
rspamd-7f8de787946b883cc791bf6c0bcb514496caf074.zip
* Make doxygen happy about structures members
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h23
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;