Author: jorton Date: Wed Jun 24 09:46:30 2009 New Revision: 787961 URL: http://svn.apache.org/viewvc?rev=787961&view=rev Log: Merge r641855 from trunk: Update Timeout section, the semantics changed completely since 1.3 and the caveats on signals not being reset thankfully no longer apply either. Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en?rev=787961&r1=787960&r2=787961&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en (original) +++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en Wed Jun 24 09:46:30 2009 @@ -3163,26 +3163,29 @@ Status:Core Module:core -

The TimeOut directive currently defines - the amount of time Apache will wait for three things:

+

The TimeOut directive defines the length + of time Apache will wait for I/O in various circumstances:

    -
  1. The total amount of time it takes to receive a GET - request.
  2. - -
  3. The amount of time between receipt of TCP packets on a - POST or PUT request.
  4. - -
  5. The amount of time between ACKs on transmissions of TCP - packets in responses.
  6. +
  7. When reading data from the client, the length of time to + wait for a TCP packet to arrive if the read buffer is + empty.
  8. + +
  9. When writing data to the client, the length of time to wait + for an acknowledgement of a packet if the send buffer is + full.
  10. + +
  11. In mod_cgi, the length of time to wait for + output from a CGI script.
  12. + +
  13. In mod_ext_filter, the length of time to + wait for output from a filtering process.
  14. + +
  15. In mod_proxy, the default timeout value if + ProxyTimeout is not + configured.
-

We plan on making these separately configurable at some point - down the road. The timer used to default to 1200 before 1.2, - but has been lowered to 300 which is still far more than - necessary in most situations. It is not set any lower by - default because there may still be odd places in the code where - the timer is not reset when a packet is sent.

top
Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml?rev=787961&r1=787960&r2=787961&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml (original) +++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml Wed Jun 24 09:46:30 2009 @@ -3137,26 +3137,29 @@ server configvirtual host -

The TimeOut directive currently defines - the amount of time Apache will wait for three things:

+

The TimeOut directive defines the length + of time Apache will wait for I/O in various circumstances:

    -
  1. The total amount of time it takes to receive a GET - request.
  2. - -
  3. The amount of time between receipt of TCP packets on a - POST or PUT request.
  4. - -
  5. The amount of time between ACKs on transmissions of TCP - packets in responses.
  6. +
  7. When reading data from the client, the length of time to + wait for a TCP packet to arrive if the read buffer is + empty.
  8. + +
  9. When writing data to the client, the length of time to wait + for an acknowledgement of a packet if the send buffer is + full.
  10. + +
  11. In mod_cgi, the length of time to wait for + output from a CGI script.
  12. + +
  13. In mod_ext_filter, the length of time to + wait for output from a filtering process.
  14. + +
  15. In mod_proxy, the default timeout value if + ProxyTimeout is not + configured.
-

We plan on making these separately configurable at some point - down the road. The timer used to default to 1200 before 1.2, - but has been lowered to 300 which is still far more than - necessary in most situations. It is not set any lower by - default because there may still be odd places in the code where - the timer is not reset when a packet is sent.