diff options
author | stbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2009-10-11 13:16:26 +0000 |
---|---|---|
committer | stbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2009-10-11 13:16:26 +0000 |
commit | aba63f984a93c9bce0712a85e3236a4b2b394a00 (patch) | |
tree | 9fe3e30c40b50d3dd9ab25a6805411625825bc7a /src/base.h | |
parent | be33cfe2c3bcd17a5fdf8dac73312e6fe685510b (diff) | |
download | lighttpd-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |