Searched refs:connections (Results 1 - 7 of 7) sorted by relevance

/httpd/modules/experimental/
H A Dmod_noloris.c90 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 Dmod_status.c532 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,
/httpd/include/
H A Dscoreboard.h138 * 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 Dutil_ldap.h162 struct util_ldap_connection_t *connections; member in struct:util_ldap_state_t
229 * Find a connection in a list of connections
/httpd/modules/ldap/
H A Dutil_ldap.c154 /* We leave bound LDAP connections floating around in our pool,
207 * connections
226 for (l=st->connections; l; l=l->next) {
232 st->connections = l->next;
721 for (l=st->connections,p=NULL; l; l=l->next) {
762 for (l=st->connections,p=NULL; l; l=l->next) {
872 st->connections = l;
2806 st->connections = NULL;
2847 st->connections = NULL;
/httpd/modules/lua/
H A Dlua_request.c1203 lua_pushstring(L, "connections");
1204 lua_pushnumber(L, ps_record->connections);
/httpd/server/mpm/event/
H A Devent.c22 * significant overhead in creating TCP connections. However, the major
187 static apr_uint32_t connection_count = 0; /* Number of open connections */
188 static apr_uint32_t lingering_count = 0; /* Number of connections in lingering close */
189 static apr_uint32_t suspended_count = 0; /* Number of suspended connections */
286 * we use the timeout_mutex to make sure that connections are added/removed
455 "Accepting new connections again: "
531 * workers to exit once it has stopped accepting new connections
536 close_worker_sockets(); /* forcefully kill all current connections */
1053 /* XXX: This will cause unbounded mem usage for long lasting connections */
1420 * XXX: close all keep-alive connections firs
[all...]

Completed in 2889 milliseconds