ktor icon indicating copy to clipboard operation
ktor copied to clipboard

Support `100 Continue`

Open cy6erGn0m opened this issue 7 years ago • 3 comments

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)

cy6erGn0m avatar May 31 '17 14:05 cy6erGn0m

https://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3

orangy avatar Jun 05 '17 15:06 orangy

Introduced receive pipelines now allows this to be implemented in a straightforward manner.

orangy avatar Aug 10 '17 16:08 orangy

Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks.

oleg-larshin avatar Aug 10 '20 15:08 oleg-larshin