Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 89210 invoked by uid 500); 13 Apr 2001 05:19:26 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 89199 invoked by uid 500); 13 Apr 2001 05:19:25 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 13 Apr 2001 05:19:25 -0000 Message-ID: <20010413051925.89195.qmail@apache.org> From: jwoolley@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/include http_core.h jwoolley 01/04/12 22:19:25 Modified: include http_core.h Log: 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 Revision Changes Path 1.43 +2 -2 httpd-2.0/include/http_core.h Index: http_core.h =================================================================== RCS file: /home/cvs/httpd-2.0/include/http_core.h,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -u -r1.42 -r1.43 --- http_core.h 2001/03/09 20:30:30 1.42 +++ http_core.h 2001/04/13 05:19:25 1.43 @@ -127,9 +127,9 @@ #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