diff options
author | Rich Bowen <rbowen@apache.org> | 2005-04-13 03:21:11 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2005-04-13 03:21:11 +0200 |
commit | 6efa7782137ea7f5263cac646a4b1d074c7844bd (patch) | |
tree | 9061ee0a9281a73630ef6268900f1fddc7e10d8b /include/httpd.h | |
parent | Bring the windows config file in line with the simplifications (diff) | |
download | apache2-6efa7782137ea7f5263cac646a4b1d074c7844bd.tar.xz apache2-6efa7782137ea7f5263cac646a4b1d074c7844bd.zip |
As discussed on the list, change the default setting for
KeepAliveTimeout from 15 seconds to 5 seconds.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@161140 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | include/httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/httpd.h b/include/httpd.h index f0b81276c0..761a612b6a 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -149,7 +149,7 @@ extern "C" { /* The timeout for waiting for keepalive timeout until next request */ #ifndef DEFAULT_KEEPALIVE_TIMEOUT -#define DEFAULT_KEEPALIVE_TIMEOUT 15 +#define DEFAULT_KEEPALIVE_TIMEOUT 5 #endif /* The number of requests to entertain per connection */ |