aboutsummaryrefslogtreecommitdiffstats
path: root/src/libutil/http.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-01-28 17:25:07 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-01-28 17:25:07 +0000
commit6c5304b5da6e44cfce9b03f469fa3d3b528ed1ff (patch)
tree53389aa841cb3b5ad4c5ff869758e880423b0067 /src/libutil/http.h
parent918e002379b0ef95e10c6608c6e23d89d284a71b (diff)
downloadrspamd-6c5304b5da6e44cfce9b03f469fa3d3b528ed1ff.tar.gz
rspamd-6c5304b5da6e44cfce9b03f469fa3d3b528ed1ff.zip
Implement key parsing from an HTTP request.
Diffstat (limited to 'src/libutil/http.h')
-rw-r--r--src/libutil/http.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libutil/http.h b/src/libutil/http.h
index c6fcf0b83..ca037c702 100644
--- a/src/libutil/http.h
+++ b/src/libutil/http.h
@@ -70,7 +70,8 @@ struct rspamd_http_message {
*/
enum rspamd_http_options {
RSPAMD_HTTP_BODY_PARTIAL = 0x1, /**< Call body handler on all body data portions */
- RSPAMD_HTTP_CLIENT_SIMPLE = 0x2 /**< Read HTTP client reply automatically */
+ RSPAMD_HTTP_CLIENT_SIMPLE = 0x2, /**< Read HTTP client reply automatically */
+ RSPAMD_HTTP_CLIENT_ENCRYPTED = 0x4 /**< Encrypt data for client */
};
struct rspamd_http_connection_private;