-
-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support detecting request body #104
Comments
While seeing all the prerequisites are met, doesn't this make more sense to come in |
This PR only handles detecting the message body, i.e. emitting streaming This ticket does not handle parsing this message body, this is left up for #105. Parsing the body relies on detecting its length first (this ticket) and likely also on adding a proper interface first (#28), so this is currently planned for the v0.8.0 release. |
Proper detection of request message bodies requires:
See https://tools.ietf.org/html/rfc7230#section-3.3
This means that we should take these into account and only emit
data
events for what is actually part of the given request and then emit anend
andclose
event.This is also a prerequisite for #39.
The text was updated successfully, but these errors were encountered: