-
-
Notifications
You must be signed in to change notification settings - Fork 724
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
[Http] Implement full HTTP/1.1 spec #3
Comments
Retain reference to lambda to prevent it from being gc'd early
Is there any progress? I understand without this solved there is no simple reading POST requests? |
I started work on reactphp/http#13 and that adds the ability to read POST request parameters But don't know how to finalize the part with file uploads. we should implement each upload a a stream, but I don't know how to do it. If you want to give a hand, you're welcome to do so. |
Imho simple post handling is a very necessary first step. Why not skip multipart for now? |
Actually, POST is also sent through multipart. An implementation of POST without multipart would be incomplete. |
See reactphp/http#39 and reactphp/http#96 |
Some todos:
We also need to decide how to handle encoding of outgoing data. There are different use cases for modifying the response, some of which may require buffering: websockets, gzip compression, chunked encoding.
The text was updated successfully, but these errors were encountered: