http3: change status codes to const (#3683)

Signed-off-by: Avi Rosenberg <avrumi96@gmail.com>
This commit is contained in:
Avi Rosenberg 2023-01-28 00:40:59 +02:00 committed by GitHub
parent 3f9d8feab2
commit 7b2c69451e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -411,7 +411,7 @@ func (c *client) doRequest(req *http.Request, str quic.Stream, opt RoundTripOpt,
// Rules for when to set Content-Length are defined in https://tools.ietf.org/html/rfc7230#section-3.3.2.
_, hasTransferEncoding := res.Header["Transfer-Encoding"]
isInformational := res.StatusCode >= 100 && res.StatusCode < 200
isNoContent := res.StatusCode == 204
isNoContent := res.StatusCode == http.StatusNoContent
isSuccessfulConnect := req.Method == http.MethodConnect && res.StatusCode >= 200 && res.StatusCode < 300
if !hasTransferEncoding && !isInformational && !isNoContent && !isSuccessfulConnect {
res.ContentLength = -1