View | Details | Raw Unified | Return to bug 63855
Collapse All | Expand All

(-)modules/proxy/mod_proxy_http.c (+12 lines)
Lines 438-443 static int spool_reqbody_cl(proxy_http_req_t *req, Link Here
438
    apr_file_t *tmpfile = NULL;
438
    apr_file_t *tmpfile = NULL;
439
    apr_off_t limit;
439
    apr_off_t limit;
440
440
441
    /* Send "100 Continue" if needed before spooling */
442
    if (req->expecting_100) {
443
        int saved_status = r->status;
444
        r->status = HTTP_CONTINUE;
445
        r->expecting_100 = 1;
446
447
        ap_send_interim_response(r, 1);
448
449
        r->status = saved_status;
450
        req->expecting_100 = 0;
451
    }
452
441
    body_brigade = apr_brigade_create(p, bucket_alloc);
453
    body_brigade = apr_brigade_create(p, bucket_alloc);
442
    *bytes_spooled = 0;
454
    *bytes_spooled = 0;
443
455

Return to bug 63855