From 7d0712e89f3786e55afc7cac9ceef94270fce04b Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Mon, 1 Apr 2002 05:43:47 +0000 Subject: [PATCH] Match the new APR_BUCKET_BUFF_SIZE. We want this to be slightly less than 8KB to leave room for the various allocators' internal structures while still fitting into a total of 8KB. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94356 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 1fd8ab69f2..1a46833d52 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -129,9 +129,9 @@ extern "C" { #define SATISFY_ANY 1 #define SATISFY_NOSPEC 2 -/* Make sure we don't write less than 8192 bytes at any one time. +/* Make sure we don't write less than 8000 bytes at any one time. */ -#define AP_MIN_BYTES_TO_WRITE 8192 +#define AP_MIN_BYTES_TO_WRITE 8000 /** * Retrieve the value of Options for this request -- 2.50.1