From: Cliff Woolley Date: Fri, 13 Apr 2001 05:19:25 +0000 (+0000) Subject: Change AP_MIN_BYTES_TO_WRITE from 9000 to 8192 to match the bucket buffer X-Git-Tag: 2.0.17~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ef7064507836184e165d92394fc75fb17e7e857;p=thirdparty%2Fapache%2Fhttpd.git Change AP_MIN_BYTES_TO_WRITE from 9000 to 8192 to match the bucket buffer size. This fixes the 8192-808-8192-808 iovec-length sequence problem on platforms using writev() (eg OS/2). Reviewed by: Brian Havard git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88843 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_core.h b/include/http_core.h index da40736327b..ccfdca1afe9 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -127,9 +127,9 @@ extern "C" { #define SATISFY_ANY 1 #define SATISFY_NOSPEC 2 -/* Make sure we don't write less than 9000 bytes at any one time. +/* Make sure we don't write less than 8192 bytes at any one time. */ -#define AP_MIN_BYTES_TO_WRITE 9000 +#define AP_MIN_BYTES_TO_WRITE 8192 /** * Retrieve the value of Options for this request