From d51b1a4c3c4c2b98f94139d7b7e6b23b1a01a2a4 Mon Sep 17 00:00:00 2001 From: "Allan K. Edwards" Date: Fri, 1 Sep 2000 14:47:20 +0000 Subject: [PATCH] Fix default Timeout & KeepaliveTimeout. Still need to limit directive values to prevent integer microsecond overflow. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86168 13f79535-47bb-0310-9956-ffa450edef68 --- include/httpd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/httpd.h b/include/httpd.h index 45c562f790..81551f4188 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -203,12 +203,12 @@ extern "C" { /* The timeout for waiting for messages */ #ifndef DEFAULT_TIMEOUT -#define DEFAULT_TIMEOUT 120000 +#define DEFAULT_TIMEOUT 300 #endif /* The timeout for waiting for keepalive timeout until next request */ #ifndef DEFAULT_KEEPALIVE_TIMEOUT -#define DEFAULT_KEEPALIVE_TIMEOUT 300 +#define DEFAULT_KEEPALIVE_TIMEOUT 15 #endif /* The number of requests to entertain per connection */ -- 2.50.1