[Remove entries to the current 2.0 section below, when backported]
+ *) mod_proxy: Fix a request corruption problem and a buffering problem
+ which sometimes prevented proxy-sendchunks from working.
+ [Jeff Trawick]
+
*) Fix the RPM spec file so that an RPM build now works. An RPM
build now requires system installations of APR and APR-util.
[Graham Leggett]
buf = apr_pmemdup(p, te_hdr, sizeof(te_hdr)-1);
ap_xlate_proto_to_ascii(buf, sizeof(te_hdr)-1);
- e = apr_bucket_pool_create(buf, strlen(buf), p, c->bucket_alloc);
+ e = apr_bucket_pool_create(buf, sizeof(te_hdr)-1, p, c->bucket_alloc);
APR_BRIGADE_INSERT_TAIL(header_brigade, e);
}
else {
/* <trailers> */
ASCII_CRLF, 5, c->bucket_alloc);
APR_BRIGADE_INSERT_TAIL(body_brigade, e);
+ e = apr_bucket_flush_create(c->bucket_alloc);
+ APR_BRIGADE_INSERT_TAIL(body_brigade, e);
}
if (!send_chunks) {