diff options
author | cebka@cebka-laptop <cebka@cebka-laptop> | 2008-10-10 19:21:23 +0400 |
---|---|---|
committer | cebka@cebka-laptop <cebka@cebka-laptop> | 2008-10-10 19:21:23 +0400 |
commit | 6c55c3314c9599fa1d97d7afd6a31b1982805265 (patch) | |
tree | fc81201dee4091545addf6119bdd35d81ec1f177 /main.h | |
parent | 9571811836cf8afe7733f0599976e90e3cbde560 (diff) | |
download | rspamd-6c55c3314c9599fa1d97d7afd6a31b1982805265.tar.gz rspamd-6c55c3314c9599fa1d97d7afd6a31b1982805265.zip |
* Write protocol output functions
* Fix test suite build under linux
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -128,8 +128,13 @@ struct worker_task { TAILQ_HEAD (uriq, uri) urls; /* Hash of metric result structures */ GHashTable *results; + /* Config file to write to */ struct config_file *cfg; + /* Save point for filters deferred processing */ struct save_point save; + /* Saved error message and code */ + char *last_error; + int error_code; /* Memory pool that is associated with this task */ memory_pool_t *task_pool; }; |