diff options
author | Gilles Vollant <info@winimage.com> | 2020-05-19 22:45:37 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-23 23:19:13 +0200 |
commit | 7f40633422df36b50e752749fb8795cac3e99e37 (patch) | |
tree | eb1c15371bef2222ead74a52770c577edd0a7b93 /include | |
parent | 006d2991bd8dd08e8bdc6f186ef242451ace0c0f (diff) | |
download | curl-7f40633422df36b50e752749fb8795cac3e99e37.tar.gz |
setopt: add CURLOPT_PROXY_ISSUERCERT(_BLOB) for coherency
Closes #5431
Diffstat (limited to 'include')
-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 17d0384f0..d5f8817d5 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1967,6 +1967,10 @@ typedef enum { CURLOPT(CURLOPT_PROXY_SSLKEY_BLOB, CURLOPTTYPE_BLOB, 294), CURLOPT(CURLOPT_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 295), + /* Issuer certificate for proxy */ + CURLOPT(CURLOPT_PROXY_ISSUERCERT, CURLOPTTYPE_STRINGPOINT, 296), + CURLOPT(CURLOPT_PROXY_ISSUERCERT_BLOB, CURLOPTTYPE_BLOB, 297), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |