diff options
author | Stefan Eissing <icing@apache.org> | 2016-01-29 15:37:17 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2016-01-29 15:37:17 +0100 |
commit | 736f2fce8e93221200e55aaebebc367417af9b85 (patch) | |
tree | 57996e7c58dd8ea8dc076fa0943064a9b9968e2c /modules/http2/h2_session.h | |
parent | removed experimental++ H2* timeout directives, instead using normal Timeout a... (diff) | |
download | apache2-736f2fce8e93221200e55aaebebc367417af9b85.tar.xz apache2-736f2fce8e93221200e55aaebebc367417af9b85.zip |
using keepalive timeout only when no streams are open, changing from seconds to proper apr_interval_time_t
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1727594 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_session.h')
-rw-r--r-- | modules/http2/h2_session.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_session.h b/modules/http2/h2_session.h index bdf815df1a..354b837e17 100644 --- a/modules/http2/h2_session.h +++ b/modules/http2/h2_session.h @@ -113,7 +113,7 @@ typedef struct h2_session { apr_size_t max_stream_mem; /* max buffer memory for a single stream */ apr_time_t start_wait; /* Time we started waiting for sth. to happen */ - apr_time_t keepalive_until; /* Time when we stop keeing an idle conn alive */ + apr_time_t idle_until; /* Time we shut down due to sheer boredom */ apr_pool_t *pool; /* pool to use in session handling */ apr_bucket_brigade *bbtmp; /* brigade for keeping temporary data */ |