mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
http3: fix check for content length of the response (#3998)
* fix: check response content-length other than request content-length * Update http3/client.go --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
parent
469a6153b6
commit
32f8b20ae5
1 changed files with 2 additions and 2 deletions
|
@ -429,8 +429,8 @@ func (c *client) doRequest(req *http.Request, conn quic.EarlyConnection, str qui
|
||||||
// Check that the server doesn't send more data in DATA frames than indicated by the Content-Length header (if set).
|
// Check that the server doesn't send more data in DATA frames than indicated by the Content-Length header (if set).
|
||||||
// See section 4.1.2 of RFC 9114.
|
// See section 4.1.2 of RFC 9114.
|
||||||
var httpStr Stream
|
var httpStr Stream
|
||||||
if _, ok := req.Header["Content-Length"]; ok && req.ContentLength >= 0 {
|
if _, ok := res.Header["Content-Length"]; ok && res.ContentLength >= 0 {
|
||||||
httpStr = newLengthLimitedStream(hstr, req.ContentLength)
|
httpStr = newLengthLimitedStream(hstr, res.ContentLength)
|
||||||
} else {
|
} else {
|
||||||
httpStr = hstr
|
httpStr = hstr
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue