1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-08 04:22:21 +03:00

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
This commit is contained in:
Stefan Fritsch
2011-11-19 23:35:46 +00:00
parent 4ed1b41510
commit 40ac38ff05
10 changed files with 106 additions and 103 deletions

View File

@@ -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;
};