keep track of them (mostly need to worry about when there are
no more requests, but having the list could be useful later on)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1682280 13f79535-47bb-0310-9956-
ffa450edef68
/** Context under which this connection was suspended */
void *suspended_baton;
+
+ /** Array of requests being handled under this connection. */
+ apr_array_header_t *requests;
};
struct conn_slave_rec {
c->conn_config = ap_create_conn_config(c->pool);
c->notes = apr_table_make(c->pool, 5);
c->slaves = apr_array_make(c->pool, 20, sizeof(conn_slave_rec *));
+ c->requests = apr_array_make(c->pool, 20, sizeof(request_rec *));
if ((rv = apr_socket_addr_get(&c->local_addr, APR_LOCAL, csd))