Chunked transfer encoding #15
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Chewing_Bever/lnm#15
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Both sending and receiving chunked data is very useful for HTTP applications. It allows the client or server to send data directly without first having to know how large the payload is.
For this to work, we would need some level of abstraction over the reading of request data in request handlers, as these currently directly read from the read buffers which could contain chunk delimiters etc.