mirror of
https://github.com/curl/curl.git
synced 2026-07-25 09:57:38 +03:00
http2: Add handling stream level error
Previously, when a stream was closed with other than NGHTTP2_NO_ERROR by RST_STREAM, underlying TCP connection was dropped. This is undesirable since there may be other streams multiplexed and they are very much fine. This change introduce new error code CURLE_HTTP2_STREAM, which indicates stream error that only affects the relevant stream, and connection should be kept open. The existing CURLE_HTTP2 means connection error in general. Ref: https://github.com/curl/curl/issues/659 Ref: https://github.com/curl/curl/pull/663
This commit is contained in:
parent
b2a0376350
commit
92c2a4c053
7 changed files with 20 additions and 2 deletions
|
|
@ -251,6 +251,8 @@ available, the session will be queued. (added in 7.30.0)
|
|||
Failed to match the pinned key specified with \fICURLOPT_PINNEDPUBLICKEY(3)\fP.
|
||||
.IP "CURLE_SSL_INVALIDCERTSTATUS (91)"
|
||||
Status returned failure when asked with \fICURLOPT_SSL_VERIFYSTATUS(3)\fP.
|
||||
.IP "CURLE_HTTP2_STREAM (92)"
|
||||
Stream error in the HTTP/2 framing layer.
|
||||
.IP "CURLE_OBSOLETE*"
|
||||
These error codes will never be returned. They were used in an old libcurl
|
||||
version and are currently unused.
|
||||
|
|
|
|||
|
|
@ -75,6 +75,7 @@ CURLE_FTP_WRITE_ERROR 7.1 7.17.0
|
|||
CURLE_FUNCTION_NOT_FOUND 7.1
|
||||
CURLE_GOT_NOTHING 7.9.1
|
||||
CURLE_HTTP2 7.38.0
|
||||
CURLE_HTTP2_STREAM 7.49.0
|
||||
CURLE_HTTP_NOT_FOUND 7.1
|
||||
CURLE_HTTP_PORT_FAILED 7.3 7.12.0
|
||||
CURLE_HTTP_POST_ERROR 7.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue