mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: discard negative content-length header when writing response (#3983)
* response writer: discard negative content-length header * shorten comment --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
This commit is contained in:
parent
5a22ac8970
commit
2183283622
1 changed files with 3 additions and 2 deletions
|
@ -64,9 +64,10 @@ func (w *responseWriter) WriteHeader(status int) {
|
||||||
w.header.Set("Date", time.Now().UTC().Format(http.TimeFormat))
|
w.header.Set("Date", time.Now().UTC().Format(http.TimeFormat))
|
||||||
}
|
}
|
||||||
// Content-Length checking
|
// Content-Length checking
|
||||||
|
// use ParseUint instead of ParseInt, as negative values are invalid
|
||||||
if clen := w.header.Get("Content-Length"); clen != "" {
|
if clen := w.header.Get("Content-Length"); clen != "" {
|
||||||
if cl, err := strconv.ParseInt(clen, 10, 64); err == nil {
|
if cl, err := strconv.ParseUint(clen, 10, 63); err == nil {
|
||||||
w.contentLen = cl
|
w.contentLen = int64(cl)
|
||||||
} else {
|
} else {
|
||||||
// emit a warning for malformed Content-Length and remove it
|
// emit a warning for malformed Content-Length and remove it
|
||||||
w.logger.Errorf("Malformed Content-Length %s", clen)
|
w.logger.Errorf("Malformed Content-Length %s", clen)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue