diff options
author | Thomas Glanzmann <thomas@glanzmann.de> | 2016-11-25 10:47:25 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-25 10:49:38 +0100 |
commit | 4f8b17743d7c55a0bfb48463238c88564875ae47 (patch) | |
tree | ea77a17d0cc904146e5bd17909c5c4dfbe1002ea /include/curl/curl.h | |
parent | 1232dbb8bd49b5502834ae9dd9f7ab1cb7a88b7b (diff) | |
download | curl-4f8b17743d7c55a0bfb48463238c88564875ae47.tar.gz |
HTTPS Proxy: Implement CURLOPT_PROXY_PINNEDPUBLICKEY
Diffstat (limited to 'include/curl/curl.h')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index df2914e2d..c8b85069c 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1770,6 +1770,10 @@ typedef enum { CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5. */ CINIT(SOCKS_PROXYTYPE, LONG, 263), + /* The public key in DER form used to validate the proxy public key + this option is used only if PROXY_SSL_VERIFYPEER is true */ + CINIT(PROXY_PINNEDPUBLICKEY, STRINGPOINT, 264), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |