required in ap_get_brigade
Submitted by: barbee@veribox.net
Reviewed by: ianh@apache.org
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90012
13f79535-47bb-0310-9956-
ffa450edef68
+mod_proxy changes for httpd 2.0.23-dev
+ *) Change 'readbytes' from apr_size_t to apr_off_t due to change
+ in ap_get_brigade's parameters [Barbee barbee@veribox.nbet]
mod_proxy changes for httpd 2.0.20-dev
*) Timeout added for backend connections.
int i = 0, j, len, rc;
int one = 1;
char *size = NULL;
- apr_size_t readbytes = -1;
+ apr_off_t readbytes = -1;
/* stuff for PASV mode */
int connect = 0, use_port = 0;
(r->status != HTTP_NOT_MODIFIED)) { /* not 304 */
const char *buf;
- apr_size_t readbytes;
+ apr_off_t readbytes;
/* if chunked - insert DECHUNK filter */
if (ap_proxy_liststr((buf = apr_table_get(r->headers_out, "Transfer-Encoding")), "chunked")) {