]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r280384 from trunk:
authorColm MacCarthaigh <colm@apache.org>
Mon, 23 Jan 2006 20:53:01 +0000 (20:53 +0000)
committerColm MacCarthaigh <colm@apache.org>
Mon, 23 Jan 2006 20:53:01 +0000 (20:53 +0000)
Document the ReceiveBufferSize change done in r157583
Submitted by: Murray Nesbitt <murray@cpan.org>

Submitted by: stas

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@371662 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
CHANGES
docs/manual/mod/beos.xml
docs/manual/mod/leader.xml
docs/manual/mod/mpm_common.xml
docs/manual/mod/mpm_netware.xml
docs/manual/mod/mpm_winnt.xml
docs/manual/mod/mpmt_os2.xml
docs/manual/mod/perchild.xml
docs/manual/mod/prefork.xml
docs/manual/mod/threadpool.xml
docs/manual/mod/worker.xml
docs/manual/vhosts/details.xml

diff --git a/CHANGES b/CHANGES
index 90b2594432a1bf73830b436556e44f4cec02accb..31bd75a089f581c249cdaf32fa235cc2c9a9f6e4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.0.56
 
+  *) Document the ReceiveBufferSize change done in r157583 [Murray
+     Nesbitt <murray@cpan.org>]
+
   *) mod_deflate: Merge the Vary header, instead of Setting it. Fixes
      applications that send the Vary Header themselves. PR 37559. 
      [Paul Querna]
index fe08f42e9ec52164747e0b207ec8bb39fce40b46..6f947867cbff8ce9b960974d0ddda4b3778f3ee6 100644 (file)
@@ -43,6 +43,8 @@ uses</a></seealso>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>StartThreads</name>
index ba7d497cf75a45a9febfb84a7276d873d2c44f52..f32c882b468e9f266fb2da4e9c5276f1c0c769b2 100644 (file)
@@ -66,6 +66,8 @@ MPM</description>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>LockFile</name>
index 274d701218f3da98163868bc1705e582e418d521..556b34cb92807d2dcd779a0f20e8432b89666ac2 100644 (file)
@@ -633,6 +633,26 @@ the child processes</description>
 Apache</a></seealso>
 </directivesynopsis>
 
+<directivesynopsis>
+<name>ReceiveBufferSize</name>
+<description>TCP receive buffer size</description>
+<syntax>ReceiveBufferSize <var>bytes</var></syntax>
+<default>ReceiveBufferSize 0</default>
+<contextlist><context>server config</context></contextlist>
+<modulelist><module>beos</module><module>leader</module>
+<module>mpm_netware</module><module>mpm_winnt</module>
+<module>mpmt_os2</module><module>perchild</module><module>prefork</module>
+<module>threadpool</module><module>worker</module></modulelist>
+
+<usage>
+    <p>The server will set the TCP receive buffer size to the number of
+    bytes specified.</p>
+
+    <p>If set to the value of <code>0</code>, the server will use the
+    OS default.</p>
+</usage>
+</directivesynopsis>
+
 <directivesynopsis>
 <name>SendBufferSize</name>
 <description>TCP buffer size</description>
@@ -645,13 +665,13 @@ Apache</a></seealso>
 <module>threadpool</module><module>worker</module></modulelist>
 
 <usage>
-    <p>The server will set the TCP buffer size to the number of bytes
+    <p>The server will set the TCP send buffer size to the number of bytes
     specified. Very useful to increase past standard OS defaults on
     high speed high latency (<em>i.e.</em>, 100ms or so, such as
     transcontinental fast pipes).</p>
 
     <p>If set to the value of <code>0</code>, the server will use the
-    OS deault.</p>
+    OS default.</p>
 </usage>
 </directivesynopsis>
 
index 6a40aa263265529f2acddbb7c7c0ce9f49bc385d..65b2259a31d57cafa1736aab223c9c617b88dfb7 100644 (file)
@@ -73,6 +73,8 @@
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>MaxRequestsPerChild</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>MaxSpareThreads</name>
index 7e43016a05e7242c36043d81c99d89087da4670e..68d68219e3106de605355641567af6c8ba1782f5 100644 (file)
@@ -50,6 +50,8 @@ NT.</description>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ThreadLimit</name>
index 479c43990f15393c7e3e692c6265e6d37832deea..d39d20252a3b1cd19a70cf3cf7188e276fa3bae0 100644 (file)
@@ -55,6 +55,8 @@ uses</a></seealso>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>MaxRequestsPerChild</name>
index 7381d1aaa43b84de2a26c4efe6496a0042506fed..a777c04721b63ad3087add2392d8e30963bac726 100644 (file)
@@ -170,6 +170,8 @@ uses</a></seealso>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ServerLimit</name>
index 3aef40a48e5ba1e67aa932b516aef8549b71e27b..78a6def2c439882312f7cc9e4955ab6761ec357b 100644 (file)
@@ -107,6 +107,8 @@ uses</a></seealso>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ServerLimit</name>
index 91c98ec710e54ef429681b5df14cb08170a247f5..39925e3428449b0a0627403fcd094c2775d9a404 100644 (file)
@@ -60,6 +60,8 @@
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ListenBacklog</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>LockFile</name>
index ee01113d67c35e3be8460fceb24f5c96a56902b2..f550e2ad58497e1858ad0e3823a6c692bdd46eec 100644 (file)
@@ -167,6 +167,8 @@ uses</a></seealso>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ScoreBoardFile</name>
 </directivesynopsis>
+<directivesynopsis location="mpm_common"><name>ReceiveBufferSize</name>
+</directivesynopsis>
 <directivesynopsis location="mpm_common"><name>SendBufferSize</name>
 </directivesynopsis>
 <directivesynopsis location="mpm_common"><name>ServerLimit</name>
index 2da46607a746530948e7512ecf5157bc7b0ce133..5b022778779dbe096c74e1b358c7afd55cb451f7 100644 (file)
       <directive module="core">KeepAliveTimeout</directive>,
       <directive module="core">KeepAlive</directive>,
       <directive module="core">MaxKeepAliveRequests</directive>,
+      <directive module="core">ReceiveBufferSize</directive>,
       or <directive module="core">SendBufferSize</directive>
       directive then the respective value is inherited from the
       main_server. (That is, inherited from whatever the final