Hi RĂ¼diger,

On Sat, Oct 19, 2019 at 4:04 PM Yann Ylavic <[email protected]> wrote:
>
>     /*
>      * Tell the HTTP_IN filter that it should send a "100 continue" if the
>      * client expects one, before blocking on the body, otherwise we'd wait
>      * for each other.
>      */
>     if (req->expecting_100) {
>         /* From https://tools.ietf.org/html/rfc7231#section-5.1.1
>          *   A server MAY omit sending a 100 (Continue) response if it has
>          *   already received some or all of the message body for the
>          *   corresponding request, or if [snip].
>          */
>         r->expecting_100 = APR_BRIGADE_EMPTY(input_brigade);
>         req->expecting_100 = 0;
>     }

I had to revert this, the HTTP_IN filter won't handle "100 continue"
anymore after prefetching..
So back to this r1868576, plus r1868653 to handle
rfc7231#section-5.1.1's MAY directly in ap_proxy_http_prefetch(), when
we know we have some body bytes.

Looks good to you?

Regards,
Yann.

Reply via email to