summaryrefslogtreecommitdiff
path: root/uclient.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-05-04 13:34:40 +0200
committerFelix Fietkau <nbd@openwrt.org>2014-05-04 13:39:43 +0200
commit3ddb765bd513a70d128810b65c3a45f81690782e (patch)
treea3644b31c52ffa312ab64a87423d6f208dbd846d /uclient.h
parent63a984dbdf8a4d1249838e0708a4bed2dfaff476 (diff)
downloaduclient-3ddb765bd513a70d128810b65c3a45f81690782e.tar.gz
http: make ustream_ssl optional, only use provided ssl context
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'uclient.h')
-rw-r--r--uclient.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/uclient.h b/uclient.h
index 25990c0..95b6d57 100644
--- a/uclient.h
+++ b/uclient.h
@@ -32,6 +32,7 @@ enum uclient_error_code {
UCLIENT_ERROR_CONNECT,
UCLIENT_ERROR_SSL_INVALID_CERT,
UCLIENT_ERROR_SSL_CN_MISMATCH,
+ UCLIENT_ERROR_MISSING_SSL_CONTEXT,
};
union uclient_addr {
@@ -85,6 +86,7 @@ int uclient_http_set_header(struct uclient *cl, const char *name, const char *va
int uclient_http_set_request_type(struct uclient *cl, const char *type);
bool uclient_http_redirect(struct uclient *cl);
-int uclient_http_set_ssl_ctx(struct uclient *cl, struct ustream_ssl_ctx *ctx, bool require_validation);
+int uclient_http_set_ssl_ctx(struct uclient *cl, const struct ustream_ssl_ops *ops,
+ struct ustream_ssl_ctx *ctx, bool require_validation);
#endif