diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-01-20 20:38:00 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-01-20 20:38:00 +0000 |
commit | b692b8ebe5c5af408daf8a132d8ebd8b1ec1c7d1 (patch) | |
tree | 4e8fe3c377e8064b9f208d9e9f09d2d4329b6769 /src/client/rspamdclient.h | |
parent | aa29c7e4cbc6c4c904e5bd265ceb3596a85a5d1e (diff) | |
download | rspamd-b692b8ebe5c5af408daf8a132d8ebd8b1ec1c7d1.tar.gz rspamd-b692b8ebe5c5af408daf8a132d8ebd8b1ec1c7d1.zip |
Allow some custom output for rspamc.
Diffstat (limited to 'src/client/rspamdclient.h')
-rw-r--r-- | src/client/rspamdclient.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/rspamdclient.h b/src/client/rspamdclient.h index 91f42911b..85b57c376 100644 --- a/src/client/rspamdclient.h +++ b/src/client/rspamdclient.h @@ -28,6 +28,7 @@ #include "ucl.h" struct rspamd_client_connection; +struct rspamd_http_message; /** * Callback is called on client connection completed @@ -39,6 +40,7 @@ struct rspamd_client_connection; */ typedef void (*rspamd_client_callback) ( struct rspamd_client_connection *conn, + struct rspamd_http_message *msg, const gchar *name, ucl_object_t *result, gpointer ud, |