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

(-)modules/proxy/mod_proxy_http.c (-2 / +4 lines)
Lines 954-960 Link Here
954
    else if (old_te_val) {
954
    else if (old_te_val) {
955
        if (force10
955
        if (force10
956
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
956
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
957
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunks"))) {
957
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunks")
958
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunked"))) {
958
            rb_method = RB_SPOOL_CL;
959
            rb_method = RB_SPOOL_CL;
959
        }
960
        }
960
        else {
961
        else {
Lines 966-972 Link Here
966
            rb_method = RB_STREAM_CL;
967
            rb_method = RB_STREAM_CL;
967
        }
968
        }
968
        else if (!force10
969
        else if (!force10
969
                  && apr_table_get(r->subprocess_env, "proxy-sendchunks")
970
                  && (apr_table_get(r->subprocess_env, "proxy-sendchunks")
971
                      || apr_table_get(r->subprocess_env, "proxy-sendchunked"))
970
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
972
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
971
            rb_method = RB_STREAM_CHUNKED;
973
            rb_method = RB_STREAM_CHUNKED;
972
        }
974
        }

Return to bug 43183