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

(-)trunk/modules/proxy/mod_proxy_http.c (-2 / +2 lines)
Lines 947-953 Link Here
947
    else if (old_te_val) {
947
    else if (old_te_val) {
948
        if (force10
948
        if (force10
949
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
949
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
950
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunks"))) {
950
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunked"))) {
951
            rb_method = RB_SPOOL_CL;
951
            rb_method = RB_SPOOL_CL;
952
        }
952
        }
953
        else {
953
        else {
Lines 959-965 Link Here
959
            rb_method = RB_STREAM_CL;
959
            rb_method = RB_STREAM_CL;
960
        }
960
        }
961
        else if (!force10
961
        else if (!force10
962
                  && apr_table_get(r->subprocess_env, "proxy-sendchunks")
962
                  && apr_table_get(r->subprocess_env, "proxy-sendchunked")
963
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
963
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
964
            rb_method = RB_STREAM_CHUNKED;
964
            rb_method = RB_STREAM_CHUNKED;
965
        }
965
        }

Return to bug 43183