mirror of
https://github.com/curl/curl.git
synced 2026-08-01 09:58:07 +03:00
CURLcode: add CURLE_SSL_CLIENTCERT
When a TLS server requests a client certificate during handshake and none can be provided, libcurl now returns this new error code CURLE_SSL_CLIENTCERT Only supported by Secure Transport and OpenSSL for TLS 1.3 so far. Closes #6721
This commit is contained in:
parent
0acfe05c2e
commit
94241a9e78
7 changed files with 26 additions and 4 deletions
|
|
@ -262,6 +262,8 @@ be one out of several problems, see the error buffer for details.
|
|||
.IP "CURLE_QUIC_CONNECT_ERROR (96)"
|
||||
QUIC connection error. This error may be caused by an SSL library error. QUIC
|
||||
is the protocol used for HTTP/3 transfers.
|
||||
.IP "CURLE_SSL_CLIENTCERT (98)"
|
||||
SSL Client Certificate required.
|
||||
.IP "CURLE_OBSOLETE*"
|
||||
These error codes will never be returned. They were used in an old libcurl
|
||||
version and are currently unused.
|
||||
|
|
|
|||
|
|
@ -126,6 +126,7 @@ CURLE_SSL_CACERT 7.10 7.62.0
|
|||
CURLE_SSL_CACERT_BADFILE 7.16.0
|
||||
CURLE_SSL_CERTPROBLEM 7.10
|
||||
CURLE_SSL_CIPHER 7.10
|
||||
CURLE_SSL_CLIENTCERT 7.77.0
|
||||
CURLE_SSL_CONNECT_ERROR 7.1
|
||||
CURLE_SSL_CRL_BADFILE 7.19.0
|
||||
CURLE_SSL_ENGINE_INITFAILED 7.12.3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue