diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2021-02-11 17:09:59 -0500 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2021-02-14 18:20:48 -0500 |
commit | 53022e1893de74b73554396b697f5a06cc7bc3f2 (patch) | |
tree | c771a0d256d150a43481f1b48b13656a6d9f4b93 /docs/libcurl/symbols-in-versions | |
parent | b68026f7f4f4f99926fabf7f7b8ec948d5fcdc72 (diff) | |
download | curl-53022e1893de74b73554396b697f5a06cc7bc3f2.tar.gz |
doh: add options to disable ssl verification
- New libcurl options CURLOPT_DOH_SSL_VERIFYHOST,
CURLOPT_DOH_SSL_VERIFYPEER and CURLOPT_DOH_SSL_VERIFYSTATUS do the
same as their respective counterparts.
- New curl tool options --doh-insecure and --doh-cert-status do the same
as their respective counterparts.
Prior to this change DOH SSL certificate verification settings for
verifyhost and verifypeer were supposed to be inherited respectively
from CURLOPT_SSL_VERIFYHOST and CURLOPT_SSL_VERIFYPEER, but due to a bug
were not. As a result DOH verification remained at the default, ie
enabled, and it was not possible to disable. This commit changes
behavior so that the DOH verification settings are independent and not
inherited.
Ref: https://github.com/curl/curl/pull/4579#issuecomment-554723676
Fixes https://github.com/curl/curl/issues/4578
Closes https://github.com/curl/curl/pull/6597
Diffstat (limited to 'docs/libcurl/symbols-in-versions')
-rw-r--r-- | docs/libcurl/symbols-in-versions | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions index a22fc0fa5..7da5c4cfa 100644 --- a/docs/libcurl/symbols-in-versions +++ b/docs/libcurl/symbols-in-versions @@ -410,6 +410,9 @@ CURLOPT_DNS_LOCAL_IP6 7.33.0 CURLOPT_DNS_SERVERS 7.24.0 CURLOPT_DNS_SHUFFLE_ADDRESSES 7.60.0 CURLOPT_DNS_USE_GLOBAL_CACHE 7.9.3 7.11.1 +CURLOPT_DOH_SSL_VERIFYHOST 7.76.0 +CURLOPT_DOH_SSL_VERIFYPEER 7.76.0 +CURLOPT_DOH_SSL_VERIFYSTATUS 7.76.0 CURLOPT_DOH_URL 7.62.0 CURLOPT_EGDSOCKET 7.7 CURLOPT_ENCODING 7.10 |