std/net/http: Fix chunked response terminator #1476
No reviewers
Labels
No labels
UX
active development
backlog
blocker
bootstrap
bounty
bug
dependencies
discussion
documentation
duplicate
enhancement
flaky test
help wanted
invalid
javascript
question
release
tendentious
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
mighty-gerbils/gerbil!1476
Loading…
Reference in a new issue
No description provided.
Delete branch "jay/gerbil:bug-chunked-response-terminator"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
RFC 9112 section 7.1 requires the chunked response body to end with
0\r\n\r\n. The writer previously emitted only0\r\n, which strict clients treated as an incomplete response. Chunked responses now include the final CRLF after the zero-size chunk.Fix chunked response terminatorto std/net/http: Fix chunked response terminatorthank you!