diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-03 14:59:45 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-03 14:59:45 +0000 |
commit | 78e0800beb28669360e37d78de06abf31df9dcac (patch) | |
tree | b603504c5a0bca50225f98353f6c11a158789732 /src/libutil/http.h | |
parent | c0e76d49b5133638cee11846a1fc79d8929c865a (diff) | |
download | rspamd-78e0800beb28669360e37d78de06abf31df9dcac.tar.gz rspamd-78e0800beb28669360e37d78de06abf31df9dcac.zip |
[Minor] Allow to disable ssl verification if needed
Diffstat (limited to 'src/libutil/http.h')
-rw-r--r-- | src/libutil/http.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/libutil/http.h b/src/libutil/http.h index 9f3861865..a28a6b389 100644 --- a/src/libutil/http.h +++ b/src/libutil/http.h @@ -67,15 +67,18 @@ struct rspamd_storage_shmem { * Body has been set for a message */ #define RSPAMD_HTTP_FLAG_HAS_BODY (1 << 5) - +/** + * Do not verify server's certificate + */ +#define RSPAMD_HTTP_FLAG_SSL_NOVERIFY (1 << 6) /** * Options for HTTP connection */ 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_ENCRYPTED = 0x4, /**< Encrypt data for client */ - RSPAMD_HTTP_CLIENT_SHARED = 0x8, /**< Store reply in shared memory */ + RSPAMD_HTTP_BODY_PARTIAL = 0x1, /**< Call body handler on all body data portions *///!< RSPAMD_HTTP_BODY_PARTIAL + RSPAMD_HTTP_CLIENT_SIMPLE = 0x2, /**< Read HTTP client reply automatically */ //!< RSPAMD_HTTP_CLIENT_SIMPLE + RSPAMD_HTTP_CLIENT_ENCRYPTED = 0x4, /**< Encrypt data for client */ //!< RSPAMD_HTTP_CLIENT_ENCRYPTED + RSPAMD_HTTP_CLIENT_SHARED = 0x8, /**< Store reply in shared memory */ //!< RSPAMD_HTTP_CLIENT_SHARED }; typedef int (*rspamd_http_body_handler_t) (struct rspamd_http_connection *conn, |