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

(-)modules/proxy/mod_proxy_http.c (+5 lines)
Lines 548-553 static int spool_reqbody_cl(proxy_http_req_t *req, Link Here
548
        e = apr_bucket_immortal_create(CRLF_ASCII, 2, bucket_alloc);
548
        e = apr_bucket_immortal_create(CRLF_ASCII, 2, bucket_alloc);
549
        APR_BRIGADE_INSERT_TAIL(input_brigade, e);
549
        APR_BRIGADE_INSERT_TAIL(input_brigade, e);
550
    }
550
    }
551
    if (tmpfile) {
552
        e = apr_bucket_eos_create(bucket_alloc);
553
        APR_BRIGADE_INSERT_TAIL(input_brigade, e);
554
    }
551
    return OK;
555
    return OK;
552
}
556
}
553
557
Lines 789-794 static int ap_proxy_http_prefetch(proxy_http_req_t Link Here
789
        req->rb_method = RB_SPOOL_CL;
793
        req->rb_method = RB_SPOOL_CL;
790
    }
794
    }
791
795
796
    req->rb_method = RB_SPOOL_CL;
792
    switch (req->rb_method) {
797
    switch (req->rb_method) {
793
    case RB_STREAM_CHUNKED:
798
    case RB_STREAM_CHUNKED:
794
        add_te_chunked(req->p, bucket_alloc, header_brigade);
799
        add_te_chunked(req->p, bucket_alloc, header_brigade);

Return to bug 64452