Return-Path: Delivered-To: apmail-apache-docs-archive@apache.org Received: (qmail 84059 invoked by uid 500); 13 Jul 2001 11:41:05 -0000 Mailing-List: contact apache-docs-help@apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: apache-docs@apache.org Delivered-To: mailing list apache-docs@apache.org Delivered-To: moderator for apache-docs@apache.org Received: (qmail 56029 invoked by uid 500); 13 Jul 2001 07:42:29 -0000 Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 13 Jul 2001 07:38:02 -0000 Message-ID: <20010713073802.54764.qmail@apache.org> From: dirkx@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/mod core.html.en core.html.fr dirkx 01/07/13 00:38:00 Modified: htdocs/manual server-wide.html.en server-wide.html.fr server-wide.html.ja.jis htdocs/manual/misc perf-bsd44.html htdocs/manual/mod core.html.en core.html.fr Log: Scratched an itch; it was just to painfull to move binaries around on FreeBSD - due to differences on the platform apache was compiled on and it was actually ran on. This adds AcceptFilter on/off to make live easier. See commit/CHANGES entry in apache-1.3 repo. I left comments in the French and Japanese text; just to help translators. Is that the right procedure ? Revision Changes Path 1.8 +4 -1 httpd-docs-1.3/htdocs/manual/server-wide.html.en Index: server-wide.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/server-wide.html.en,v retrieving revision 1.7 retrieving revision 1.8 diff -u -u -r1.7 -r1.8 --- server-wide.html.en 2001/01/11 06:20:19 1.7 +++ server-wide.html.en 2001/07/13 07:37:13 1.8 @@ -154,6 +154,7 @@ KeepAliveTimeout
Listen
ListenBackLog
+AcceptFilter
MaxKeepAliveRequests
Port
SendBufferSize
@@ -177,7 +178,9 @@

The ListenBackLog, SendBufferSize, and TimeOut directives are used to adjust how Apache -interacts with the network.

+interacts with the network.AcceptFilter controls +a BSD specific filter optimization. See the BSD section on +performance hints documentation.

The KeepAlive, KeepAliveTimeout, and MaxKeepAliveRequests directives are used to 1.3 +9 -1 httpd-docs-1.3/htdocs/manual/server-wide.html.fr Index: server-wide.html.fr =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/server-wide.html.fr,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- server-wide.html.fr 2001/02/28 10:45:36 1.2 +++ server-wide.html.fr 2001/07/13 07:37:17 1.3 @@ -160,6 +160,7 @@ KeepAliveTimeout
Listen
ListenBackLog
+AcceptLog
MaxKeepAliveRequests
Port
SendBufferSize
@@ -186,7 +187,14 @@

Les directives ListenBackLog, SendBufferSize, and TimeOut permettent d'adjuster comment Apache interagit avec -le r�seau.

+le r�seau. +

+ + + +

Les directives KeepAlive, KeepAliveTimeout, and MaxKeepAliveRequests d�finissent comment 1.3 +5 -1 httpd-docs-1.3/htdocs/manual/server-wide.html.ja.jis Index: server-wide.html.ja.jis =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/server-wide.html.ja.jis,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- server-wide.html.ja.jis 2001/01/12 00:46:12 1.2 +++ server-wide.html.ja.jis 2001/07/13 07:37:21 1.3 @@ -152,6 +152,7 @@ KeepAliveTimeout
Listen
ListenBackLog
+AcceptFilter
MaxKeepAliveRequests
Port
SendBufferSize
@@ -176,7 +177,10 @@

ListenBackLog $B%G%#%l%/%F%#%V!"(BSendBufferSize $B%G%#%l%/%F%#%V!"(BTimeOut $B%G%#%l%/%F%#%V$O!"(BApache $B$H(B -$B%M%C%H%o!<%/$H$N4X78$rD4@0$7$^$9!#(B

+$B%M%C%H%o!<%/$H$N4X78$rD4@0$7$^$9!#(B +

KeepAlive $B%G%#%l%/%F%#%V!"(BKeepAliveTimeout $B%G%#%l%/%F%#%V!"(BMaxKeepAliveRequests $B%G%#%l%/%F%#%V$O!"(B 1.16 +6 -1 httpd-docs-1.3/htdocs/manual/misc/perf-bsd44.html Index: perf-bsd44.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/misc/perf-bsd44.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -u -r1.15 -r1.16 --- perf-bsd44.html 2000/12/03 03:28:37 1.15 +++ perf-bsd44.html 2001/07/13 07:37:35 1.16 @@ -287,7 +287,12 @@ e.g. with the command kldload accf_data, or compile a kernel with options ACCEPT_FILTER_DATA. Apache will then enable filtering when it is restarted. - +

+Accept filters ar compiled in if the symbol SO_ACCEPTFILTER +is defined on the machine apache is build. +

+Additionally there is a directive AcceptFilter to switch the filters on or off. The default is on; except +when apache is compiled with -D AP_ACCEPTFILTER_ON.

If you are more concerned about performance than compatibility with 1.189 +38 -0 httpd-docs-1.3/htdocs/manual/mod/core.html.en Index: core.html.en =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/core.html.en,v retrieving revision 1.188 retrieving revision 1.189 diff -u -u -r1.188 -r1.189 --- core.html.en 2001/05/08 11:38:48 1.188 +++ core.html.en 2001/07/13 07:37:45 1.189 @@ -21,6 +21,7 @@

Directives


+ +

AcceptFilter directive

+ +Syntax: AcceptFilter on|off
+Default: AccceptFilter on
+Context: server configt
+Status: core

+ +

+AcceptFilter controls a BSD specific filter +optimization. It is compiled in by default - and switched +on by default if your system supports it (setsocketopt() option +SO_ACCCEPTFILTER). Currently only FreeBSD supports this. +

+

+See the filter section on performance +hints for more information. +

+

+The compile time flag AP_ACCEPTFILTER_OFF can be +used to change the default to 'off'. httpd -V +and httpd -L will show compile time defaults and +wether or not SO_ACCEPTFILTER was defined during the compile. +

+

AccessConfig directive

1.2 +3 -0 httpd-docs-1.3/htdocs/manual/mod/core.html.fr Index: core.html.fr =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/core.html.fr,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- core.html.fr 2001/06/19 03:04:48 1.1 +++ core.html.fr 2001/07/13 07:37:49 1.2 @@ -19,6 +19,7 @@

Directives


+

Directive AccessConfig

--------------------------------------------------------------------- To unsubscribe, e-mail: apache-docs-unsubscribe@apache.org For additional commands, e-mail: apache-docs-help@apache.org