Changes with Apache 2.0.50
+ *) Allow LimitRequestBody to be reset to unlimited. PR 29106
+ [André Malo]
+
*) Fix a bunch of cases where the return code of the regex compiler
was not checked properly. This affects: mod_setenvif, mod_usertrack,
mod_proxy, mod_proxy_ftp and core. PR 28218. [André Malo]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/06/06 12:55:44 $]
+Last modified at [$Date: 2004/06/06 13:23:26 $]
Release:
docs/manual/mod/mod_ldap.xml r1.12
+1 minfrin, bnicholes
- *) Allow LimitRequestBody to be reset to unlimited. PR 29106
- server/core.c: r1.279
- +1: nd, trawick, bnicholes
- +1: kess (on concept)
-
*) Small fix to allow reverse proxying to an ftp server. Previously
an attempt to do this would try and connect to 0.0.0.0, regardless
of the server specified.
#include "mod_proxy.h"
#include "ap_listen.h"
+/* LimitRequestBody handling */
+#define AP_LIMIT_REQ_BODY_UNSET ((apr_off_t) -1)
+#define AP_DEFAULT_LIMIT_REQ_BODY ((apr_off_t) 0)
+
/* LimitXMLRequestBody handling */
#define AP_LIMIT_UNSET ((long) -1)
#define AP_DEFAULT_LIMIT_XML_BODY ((size_t)1000000)
conf->limit_nproc = NULL;
#endif
- conf->limit_req_body = 0;
+ conf->limit_req_body = AP_LIMIT_REQ_BODY_UNSET;
conf->limit_xml_body = AP_LIMIT_UNSET;
conf->sec_file = apr_array_make(a, 2, sizeof(ap_conf_vector_t *));
}
#endif
- if (new->limit_req_body) {
+ if (new->limit_req_body != AP_LIMIT_REQ_BODY_UNSET) {
conf->limit_req_body = new->limit_req_body;
}
core_dir_config *d =
(core_dir_config *)ap_get_module_config(r->per_dir_config, &core_module);
+ if (d->limit_req_body == AP_LIMIT_REQ_BODY_UNSET) {
+ return AP_DEFAULT_LIMIT_REQ_BODY;
+ }
+
return d->limit_req_body;
}