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

(-)modules/proxy/proxy_http.c (-2 / +4 lines)
Lines 1211-1217 Link Here
1211
    else if (old_te_val) {
1211
    else if (old_te_val) {
1212
        if (force10 
1212
        if (force10 
1213
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
1213
             || (apr_table_get(r->subprocess_env, "proxy-sendcl")
1214
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunks"))) {
1214
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunks")
1215
                  && !apr_table_get(r->subprocess_env, "proxy-sendchunked"))) {
1215
            rb_method = RB_SPOOL_CL;
1216
            rb_method = RB_SPOOL_CL;
1216
        }
1217
        }
1217
        else {
1218
        else {
Lines 1223-1229 Link Here
1223
            rb_method = RB_STREAM_CL;
1224
            rb_method = RB_STREAM_CL;
1224
        }
1225
        }
1225
        else if (!force10 
1226
        else if (!force10 
1226
                  && apr_table_get(r->subprocess_env, "proxy-sendchunks")
1227
                  && (apr_table_get(r->subprocess_env, "proxy-sendchunks")
1228
                      || apr_table_get(r->subprocess_env, "proxy-sendchunked"))
1227
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
1229
                  && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
1228
            rb_method = RB_STREAM_CHUNKED;
1230
            rb_method = RB_STREAM_CHUNKED;
1229
        }
1231
        }

Return to bug 43183