diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-12-14 19:05:56 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-12-14 19:05:56 +0300 |
commit | 4499fc92189905fde71139822d784ab7819b181c (patch) | |
tree | 4057f60b1af82b52649d05f79a804543c57ae6f4 /src/main.h | |
parent | 7072f8548414cf0e88babd7556f1f893c93ba3dc (diff) | |
download | rspamd-4499fc92189905fde71139822d784ab7819b181c.tar.gz rspamd-4499fc92189905fde71139822d784ab7819b181c.zip |
* Finally get rid of stupid savepoints system and migrate to async events logic completely
Fix lua redis library.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main.h b/src/main.h index 59a5f3c30..8a680451a 100644 --- a/src/main.h +++ b/src/main.h @@ -108,15 +108,6 @@ struct counter_data { }; /** - * Save point object for delayed filters processing - */ -struct save_point { - GList *entry; /**< pointer to saved metric */ - void *item; /**< pointer to saved item */ - guint saved; /**< how much time we have delayed processing */ -}; - -/** * Structure to point exception in text from processing */ struct process_exception { @@ -235,7 +226,6 @@ struct worker_task { GList *messages; /**< list of messages that would be reported */ GHashTable *re_cache; /**< cache for matched or not matched regexps */ struct config_file *cfg; /**< pointer to config object */ - struct save_point save; /**< save point for delayed processing */ gchar *last_error; /**< last error */ gint error_code; /**< code of last error */ memory_pool_t *task_pool; /**< memory pool for task */ |