summaryrefslogtreecommitdiffstats
path: root/server/core.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-12-11 02:07:31 +0100
committerYann Ylavic <ylavic@apache.org>2020-12-11 02:07:31 +0100
commite6d6a58ebd358767e6fcec830e81e00b38152045 (patch)
treea3b406b8822b830c405d847c5a11312e21208282 /server/core.c
parentci: add a run for MPM worker w/ pool-debug. (diff)
downloadapache2-e6d6a58ebd358767e6fcec830e81e00b38152045.tar.xz
apache2-e6d6a58ebd358767e6fcec830e81e00b38152045.zip
Follow up to r1836032: ReadBufferSize not configurable from htaccess.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1884295 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/core.c')
-rw-r--r--server/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/core.c b/server/core.c
index 9f81d421f1..f4be343f87 100644
--- a/server/core.c
+++ b/server/core.c
@@ -4730,7 +4730,7 @@ AP_INIT_TAKE1("EnableMMAP", set_enable_mmap, NULL, OR_FILEINFO,
"Controls whether memory-mapping may be used to read files"),
AP_INIT_TAKE1("EnableSendfile", set_enable_sendfile, NULL, OR_FILEINFO,
"Controls whether sendfile may be used to transmit files"),
-AP_INIT_TAKE1("ReadBufferSize", set_read_buf_size, NULL, OR_FILEINFO,
+AP_INIT_TAKE1("ReadBufferSize", set_read_buf_size, NULL, ACCESS_CONF|RSRC_CONF,
"Size (in bytes) of the memory buffers used to read data"),
AP_INIT_TAKE1("FlushMaxThreshold", set_flush_max_threshold, NULL, RSRC_CONF,
"Maximum size (in bytes) above which pending data are flushed (blocking) to the network"),