ktor
ktor copied to clipboard
Support `100 Continue`
We have continue support in netty however it shouldn't be done like that: we have to respond continue (to allow client sending request body) only when handler tries to access request body (call.request.receive()
) or at least once request handler has started (that is not exactly correct as user's code could respond 404)
https://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3
Introduced receive pipelines now allows this to be implemented in a straightforward manner.
Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks.