diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-20 00:35:46 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-20 00:35:46 +0100 |
commit | 40ac38ff050679c90fb07f1b262bcb51b72bb171 (patch) | |
tree | 98a7fc2eb2e7c03fe4b3e7653a03ef1a20955001 /include/httpd.h | |
parent | mod_cache_disk: Remove the unnecessary intermediate brigade while writing (diff) | |
download | apache2-40ac38ff050679c90fb07f1b262bcb51b72bb171.tar.xz apache2-40ac38ff050679c90fb07f1b262bcb51b72bb171.zip |
Remove MPM-private stuff from conn_state_t
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1204104 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r-- | include/httpd.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/httpd.h b/include/httpd.h index 464f4a1286..7c347c1497 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1144,18 +1144,6 @@ typedef enum { * @brief A structure to contain connection state information */ struct conn_state_t { - /** APR_RING of expiration timeouts */ - APR_RING_ENTRY(conn_state_t) timeout_list; - /** the expiration time of the next keepalive timeout */ - apr_time_t expiration_time; - /** connection record this struct refers to */ - conn_rec *c; - /** memory pool to allocate from */ - apr_pool_t *p; - /** bucket allocator */ - apr_bucket_alloc_t *bucket_alloc; - /** poll file descriptor information */ - apr_pollfd_t pfd; /** Current state of the connection */ conn_state_e state; }; |