Searched defs:connections (Results 1 - 4 of 4) sorted by relevance
/httpd/include/ |
H A D | scoreboard.h | 138 * connections (for async MPMs) 140 apr_uint32_t connections; /* total connections (for async MPMs) */ member in struct:process_score 141 apr_uint32_t write_completion; /* async connections doing write completion */ 142 apr_uint32_t lingering_close; /* async connections in lingering close */ 143 apr_uint32_t keep_alive; /* async connections in keep alive */ 144 apr_uint32_t suspended; /* connections suspended by some module */
|
H A D | util_ldap.h | 162 struct util_ldap_connection_t *connections; member in struct:util_ldap_state_t 229 * Find a connection in a list of connections
|
/httpd/modules/experimental/ |
H A D | mod_noloris.c | 90 static apr_hash_t *connections = NULL; local 116 if (connections == NULL) { 117 connections = apr_hash_make(pool); 122 /* Get a per-client count of connections in READ state */ 127 n = apr_hash_get(connections, ws->client, APR_HASH_KEY_STRING); 133 apr_hash_set(connections, ws->client, APR_HASH_KEY_STRING, n); 145 /* Now check the hash for clients with too many connections in READ state */ 146 for (hi = apr_hash_first(NULL, connections); hi; hi = apr_hash_next(hi)) { 152 "noloris: banning %s with %d connections in READ state", 159 apr_hash_clear(connections); [all...] |
/httpd/modules/generators/ |
H A D | mod_status.c | 532 connections = 0; local 543 "<th colspan=\"4\">Async connections</th></tr>\n" 550 connections += ps_record->connections; 561 ps_record->pid, ps_record->connections, 573 connections, busy_workers, idle_workers, 582 connections, write_completion, keep_alive,
|
Completed in 60 milliseconds