From 7ef7064507836184e165d92394fc75fb17e7e857 Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Fri, 13 Apr 2001 05:19:25 +0000 Subject: [PATCH] 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 --- include/http_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.3