diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-24 17:35:02 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-08-24 17:35:02 +0100 |
commit | a1be94b4c4b59de216e0b8b721a951b2325f7215 (patch) | |
tree | 6bb00558dd03918b500468e7385d716e83499265 /src/main.h | |
parent | 71f5454dc80cb2cc90363e219d85533b0e7a7895 (diff) | |
download | rspamd-a1be94b4c4b59de216e0b8b721a951b2325f7215.tar.gz rspamd-a1be94b4c4b59de216e0b8b721a951b2325f7215.zip |
Rework lists and hashes.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main.h b/src/main.h index 577cd5c42..537cf575c 100644 --- a/src/main.h +++ b/src/main.h @@ -14,7 +14,6 @@ #include "protocol.h" #include "filter.h" #include "buffer.h" -#include "hash.h" #include "events.h" #include "util.h" #include "logger.h" @@ -101,7 +100,6 @@ struct rspamd_main { rspamd_mempool_t *server_pool; /**< server's memory pool */ statfile_pool_t *statfile_pool; /**< shared statfiles pool */ GHashTable *workers; /**< workers pool indexed by pid */ - rspamd_hash_t *counters; /**< symbol cache counters */ rspamd_logger_t *logger; uid_t workers_uid; /**< worker's uid running to */ gid_t workers_gid; /**< worker's gid running to */ @@ -109,11 +107,6 @@ struct rspamd_main { struct roll_history *history; /**< rolling history */ }; -struct counter_data { - guint64 value; - gint number; -}; - /** * Structure to point exception in text from processing */ |