[Remove entries to the current 2.0 section below, when backported]
+ *) mod_proxy: Add proxy-sendextracrlf option to send an extra CRLF at the
+ end of the request body to work with really old HTTP servers.
+ [Justin Erenkrantz]
+
*) util_ldap: Keep track of the number of attributes retrieved from
LDAP so that all the values can be properly cached even if the
value is NULL. PR 33901 [Brad Nicholes]
/* need to flush any pending data */
b = input_brigade; /* empty now; pass_brigade() will add flush */
}
+ if (apr_table_get(r->subprocess_env, "proxy-sendextracrlf")) {
+ e = apr_bucket_immortal_create(ASCII_CRLF, 2,
+ r->connection->bucket_alloc);
+ APR_BRIGADE_INSERT_TAIL(input_brigade, e);
+ }
+
status = pass_brigade(bucket_alloc, r, conn, origin, b, 1);
return status;
}
}
APR_BRIGADE_INSERT_TAIL(header_brigade, e);
}
+ if (apr_table_get(r->subprocess_env, "proxy-sendextracrlf")) {
+ e = apr_bucket_immortal_create(ASCII_CRLF, 2,
+ r->connection->bucket_alloc);
+ APR_BRIGADE_INSERT_TAIL(header_brigade, e);
+ }
status = pass_brigade(bucket_alloc, r, conn, origin, header_brigade, 1);
return status;
}