Author: pgollucci
Date: Sat Dec 31 07:25:48 2005
New Revision: 360292
URL: http://svn.apache.org/viewcvs?rev=360292&view=rev
Log:
make use of the APREQ_DEFAULT_READ_LIMIT constant for the read_limit
Modified:
httpd/apreq/trunk/CHANGES
httpd/apreq/trunk/include/apreq_version.h
httpd/apreq/trunk/module/apache2/filter.c
Modified: httpd/apreq/trunk/CHANGES
URL:
http://svn.apache.org/viewcvs/httpd/apreq/trunk/CHANGES?rev=360292&r1=360291&r2=360292&view=diff
==============================================================================
--- httpd/apreq/trunk/CHANGES (original)
+++ httpd/apreq/trunk/CHANGES Sat Dec 31 07:25:48 2005
@@ -4,6 +4,8 @@
@section v2_07 Changes with libapreq2-2.07
+- C API [Philip M. Gollucci]
+ Use the APREQ_DEFAULT_READ_LIMIT constant for the read_limit
- C API [Ville Skyttä, Dirk Nehring]
Add explicit cast in apreq_escape()/apreq_util.h to keep
Modified: httpd/apreq/trunk/include/apreq_version.h
URL:
http://svn.apache.org/viewcvs/httpd/apreq/trunk/include/apreq_version.h?rev=360292&r1=360291&r2=360292&view=diff
==============================================================================
--- httpd/apreq/trunk/include/apreq_version.h (original)
+++ httpd/apreq/trunk/include/apreq_version.h Sat Dec 31 07:25:48 2005
@@ -61,7 +61,7 @@
#define APREQ_MINOR_VERSION 5
/** patch level */
-#define APREQ_PATCH_VERSION 6
+#define APREQ_PATCH_VERSION 7
/**
* This symbol is defined for internal, "development" copies of libapreq.
Modified: httpd/apreq/trunk/module/apache2/filter.c
URL:
http://svn.apache.org/viewcvs/httpd/apreq/trunk/module/apache2/filter.c?rev=360292&r1=360291&r2=360292&view=diff
==============================================================================
--- httpd/apreq/trunk/module/apache2/filter.c (original)
+++ httpd/apreq/trunk/module/apache2/filter.c Sat Dec 31 07:25:48 2005
@@ -36,7 +36,7 @@
/* d == OR_ALL */
struct dir_config *dc = apr_palloc(p, sizeof *dc);
dc->temp_dir = NULL;
- dc->read_limit = (apr_uint64_t)-1;
+ dc->read_limit = APREQ_DEFAULT_READ_LIMIT;
dc->brigade_limit = APREQ_DEFAULT_BRIGADE_LIMIT;
return dc;
}