diff options
author | Emil Engler <me@emilengler.com> | 2019-12-24 11:17:16 +0100 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2020-01-11 18:19:32 -0500 |
commit | cbb5429001084df4e71ebd95dbf748c3c302c9f7 (patch) | |
tree | e9d04e16e904316b710465aff43040a0c88a8618 /docs/libcurl/libcurl-errors.3 | |
parent | b700662b1c77c8af7e290538f748b71d75a79ae7 (diff) |
ngtcp2: Add an error code for QUIC connection errors
- Add new error code CURLE_QUIC_CONNECT_ERROR for QUIC connection
errors.
Prior to this change CURLE_FAILED_INIT was used, but that was not
correct.
Closes https://github.com/curl/curl/pull/4754
Diffstat (limited to 'docs/libcurl/libcurl-errors.3')
-rw-r--r-- | docs/libcurl/libcurl-errors.3 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/libcurl/libcurl-errors.3 b/docs/libcurl/libcurl-errors.3 index ac06f27c7..eff6544b6 100644 --- a/docs/libcurl/libcurl-errors.3 +++ b/docs/libcurl/libcurl-errors.3 @@ -259,6 +259,9 @@ An authentication function returned an error. .IP "CURLE_HTTP3 (95)" A problem was detected in the HTTP/3 layer. This is somewhat generic and can 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_OBSOLETE*" These error codes will never be returned. They were used in an old libcurl version and are currently unused. |