summaryrefslogtreecommitdiff
path: root/src/base.h
diff options
context:
space:
mode:
authorstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2009-10-11 13:16:26 +0000
committerstbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9>2009-10-11 13:16:26 +0000
commitaba63f984a93c9bce0712a85e3236a4b2b394a00 (patch)
tree9fe3e30c40b50d3dd9ab25a6805411625825bc7a /src/base.h
parentbe33cfe2c3bcd17a5fdf8dac73312e6fe685510b (diff)
downloadlighttpd-aba63f984a93c9bce0712a85e3236a4b2b394a00.tar.gz
Remember keep-alive-idle in separate variable (fixes #1988)
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@2623 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/base.h')
-rw-r--r--src/base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base.h b/src/base.h
index 552d51ca..88b3451d 100644
--- a/src/base.h
+++ b/src/base.h
@@ -396,7 +396,8 @@ typedef struct {
int is_readable;
int is_writable;
- int keep_alive; /* only request.c can enable it, all others just disable */
+ int keep_alive; /* only request.c can enable it, all others just disable */
+ int keep_alive_idle; /* remember max_keep_alive_idle from config */
int file_started;