From cc7452192610d37782ec1ba651698e00afa48de5 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 29 Nov 2009 15:04:08 +0000 Subject: [PATCH] Added default-server-timeout description. --- doc/webserver/developer-manual/coding.html | 2 +- doc/webserver/developer-manual/contact.html | 2 +- doc/webserver/developer-manual/copyright.html | 2 +- doc/webserver/developer-manual/index.html | 4 +- doc/webserver/faq/contact.html | 2 +- doc/webserver/faq/copyright.html | 2 +- doc/webserver/faq/index.html | 4 +- doc/webserver/user-manual/actions-file.html | 20 +-- doc/webserver/user-manual/appendix.html | 20 +-- doc/webserver/user-manual/config.html | 119 +++++++++++++++++- doc/webserver/user-manual/configuration.html | 2 +- doc/webserver/user-manual/copyright.html | 4 +- doc/webserver/user-manual/filter-file.html | 4 +- doc/webserver/user-manual/index.html | 35 +++--- doc/webserver/user-manual/quickstart.html | 2 +- doc/webserver/user-manual/startup.html | 2 +- 16 files changed, 171 insertions(+), 55 deletions(-) diff --git a/doc/webserver/developer-manual/coding.html b/doc/webserver/developer-manual/coding.html index 6898541f..15744c6e 100644 --- a/doc/webserver/developer-manual/coding.html +++ b/doc/webserver/developer-manual/coding.html @@ -2587,4 +2587,4 @@ VALIGN="top" > +> \ No newline at end of file diff --git a/doc/webserver/developer-manual/contact.html b/doc/webserver/developer-manual/contact.html index 071884d9..7230b802 100644 --- a/doc/webserver/developer-manual/contact.html +++ b/doc/webserver/developer-manual/contact.html @@ -538,4 +538,4 @@ VALIGN="top" > +> \ No newline at end of file diff --git a/doc/webserver/developer-manual/copyright.html b/doc/webserver/developer-manual/copyright.html index 5aa0d569..bf10cc77 100644 --- a/doc/webserver/developer-manual/copyright.html +++ b/doc/webserver/developer-manual/copyright.html @@ -295,4 +295,4 @@ VALIGN="top" > +> \ No newline at end of file diff --git a/doc/webserver/developer-manual/index.html b/doc/webserver/developer-manual/index.html index 3f780b30..ab588634 100644 --- a/doc/webserver/developer-manual/index.html +++ b/doc/webserver/developer-manual/index.html @@ -51,7 +51,7 @@ TARGET="_top"

$Id: developer-manual.sgml,v 2.31 2009/10/10 05:48:55 fabiankeil Exp $

$Id: developer-manual.sgml,v 2.32 2009/11/15 14:24:12 fabiankeil Exp $

\ No newline at end of file +> diff --git a/doc/webserver/faq/contact.html b/doc/webserver/faq/contact.html index a445e416..c1c4268a 100644 --- a/doc/webserver/faq/contact.html +++ b/doc/webserver/faq/contact.html @@ -538,4 +538,4 @@ VALIGN="top" >
+> \ No newline at end of file diff --git a/doc/webserver/faq/copyright.html b/doc/webserver/faq/copyright.html index 0f3bfda3..e69b829e 100644 --- a/doc/webserver/faq/copyright.html +++ b/doc/webserver/faq/copyright.html @@ -298,4 +298,4 @@ VALIGN="top" > +> \ No newline at end of file diff --git a/doc/webserver/faq/index.html b/doc/webserver/faq/index.html index 3c7db0e2..f1ed806c 100644 --- a/doc/webserver/faq/index.html +++ b/doc/webserver/faq/index.html @@ -48,7 +48,7 @@ TARGET="_top" >

$Id: faq.sgml,v 2.66 2009/10/10 05:48:55 fabiankeil Exp $

$Id: faq.sgml,v 2.67 2009/11/15 14:24:12 fabiankeil Exp $

\ No newline at end of file +> diff --git a/doc/webserver/user-manual/actions-file.html b/doc/webserver/user-manual/actions-file.html index dd3d384d..aa33aa5a 100644 --- a/doc/webserver/user-manual/actions-file.html +++ b/doc/webserver/user-manual/actions-file.html @@ -233,7 +233,7 @@ CLASS="FILENAME" > +> \ No newline at end of file diff --git a/doc/webserver/user-manual/appendix.html b/doc/webserver/user-manual/appendix.html index bee2c922..6a96fcb0 100644 --- a/doc/webserver/user-manual/appendix.html +++ b/doc/webserver/user-manual/appendix.html @@ -748,7 +748,7 @@ CLASS="SECT2" >

14.2. Privoxy's Internal Pages

Short cuts. Turn off, then on:

+> \ No newline at end of file diff --git a/doc/webserver/user-manual/config.html b/doc/webserver/user-manual/config.html index c7a94557..9e07ef2c 100644 --- a/doc/webserver/user-manual/config.html +++ b/doc/webserver/user-manual/config.html @@ -3954,8 +3954,119 @@ CLASS="SECT3" >

7.6.5. default-server-timeout

Specifies:

Assumed server-side keep-alive timeout if not specified by the server. +

Type of value:

Time in seconds. +

Default value:

None

Effect if unset:

Connections for which the server didn't specify the keep-alive + timeout are not reused. +

Notes:

Enabling this option significantly increases the number of connections + that are reused, provided the keep-alive-timeout option + is also enabled. +

While it also increases the number of connections problems + when Privoxy tries to reuse a connection that already has + been closed on the server side, or is closed while Privoxy + is trying to reuse it, this should only be a problem if it + happens for the first request sent by the client. If it happens + for requests on reused client connections, Privoxy will simply + close the connection and the client is supposed to retry the + request without bothering the user. +

Enabling this option is therefore only recommended if the + connection-sharing option + is disabled. +

It is an error to specify a value larger than the keep-alive-timeout value. +

This option has no effect if Privoxy + has been compiled without keep-alive support. +

Examples:

default-server-timeout 60 +

7.6.5. connection-sharing7.6.6. connection-sharing

7.6.6. socket-timeout7.6.7. socket-timeout

7.6.7. max-client-connections7.6.8. max-client-connections

\ No newline at end of file +> diff --git a/doc/webserver/user-manual/configuration.html b/doc/webserver/user-manual/configuration.html index cd172259..73feaf03 100644 --- a/doc/webserver/user-manual/configuration.html +++ b/doc/webserver/user-manual/configuration.html @@ -521,4 +521,4 @@ VALIGN="top" > +> \ No newline at end of file diff --git a/doc/webserver/user-manual/copyright.html b/doc/webserver/user-manual/copyright.html index 4fcc6730..9f29009b 100644 --- a/doc/webserver/user-manual/copyright.html +++ b/doc/webserver/user-manual/copyright.html @@ -102,7 +102,7 @@ CLASS="SECT2" >

12.1. License

+> \ No newline at end of file diff --git a/doc/webserver/user-manual/filter-file.html b/doc/webserver/user-manual/filter-file.html index f853ce9c..50c2fb01 100644 --- a/doc/webserver/user-manual/filter-file.html +++ b/doc/webserver/user-manual/filter-file.html @@ -366,7 +366,7 @@ CLASS="SECT2" >

9.1. Filter File Tutorial

+> \ No newline at end of file diff --git a/doc/webserver/user-manual/index.html b/doc/webserver/user-manual/index.html index 1675c539..12b516e8 100644 --- a/doc/webserver/user-manual/index.html +++ b/doc/webserver/user-manual/index.html @@ -50,7 +50,7 @@ TARGET="_top" >

$Id: user-manual.sgml,v 2.115 2009/10/10 06:19:34 fabiankeil Exp $

$Id: user-manual.sgml,v 2.116 2009/11/15 14:24:12 fabiankeil Exp $

+> \ No newline at end of file diff --git a/doc/webserver/user-manual/quickstart.html b/doc/webserver/user-manual/quickstart.html index c8c05cce..8b9b36cd 100644 --- a/doc/webserver/user-manual/quickstart.html +++ b/doc/webserver/user-manual/quickstart.html @@ -940,4 +940,4 @@ VALIGN="top" >
+> \ No newline at end of file diff --git a/doc/webserver/user-manual/startup.html b/doc/webserver/user-manual/startup.html index fcc9c296..3af75b45 100644 --- a/doc/webserver/user-manual/startup.html +++ b/doc/webserver/user-manual/startup.html @@ -899,4 +899,4 @@ VALIGN="top" > +> \ No newline at end of file -- 2.39.2