Searched defs:listeners (Results 1 - 7 of 7) sorted by relevance

/httpd/include/
H A Dap_listen.h42 * @brief Apache's listeners record.
102 * @param buckets The array of listeners buckets.
103 * @param num_buckets The total number of listeners buckets (array size).
106 * will be preserved. The number of listeners duplicated will
122 AP_DECLARE_NONSTD(void) ap_close_listeners_ex(ap_listen_rec *listeners); variable
150 "Ratio between the number of CPU cores (online) and the number of listeners buckets"), \
/httpd/server/mpm/motorz/
H A Dmotorz.h139 ap_listen_rec *listeners; member in struct:motorz_child_bucket
/httpd/server/mpm/mpmt_os2/
H A Dmpmt_os2.c102 listen_socket_t listeners[1]; member in struct:__anon371
145 apr_os_sock_put(&lr->sd, &parent_info->listeners[num_listeners].listen_fd, pconf);
209 /* Allocate a shared memory block for the array of listeners */
227 apr_os_sock_get(&parent_info->listeners[listener_num].listen_fd, lr->sd);
/httpd/server/
H A Dlisten.c48 * be printed by ap_log_common(), but keep the listeners
57 * listeners can be duplicated (if configured).
207 * parent listeners successfully bound.
419 /* Some listeners are not real so they will not have a bind_addr. */
649 /* close the old listeners */
787 "Using %i listeners bucket(s) based on %i "
798 "support: using a single listeners bucket");
888 AP_DECLARE_NONSTD(void) ap_close_listeners_ex(ap_listen_rec *listeners) argument
891 for (lr = listeners; lr; lr = lr->next) {
/httpd/server/mpm/prefork/
H A Dprefork.c131 ap_listen_rec *listeners; member in struct:prefork_child_bucket
134 static int num_buckets; /* Number of listeners buckets */
135 static prefork_child_bucket *all_buckets, /* All listeners buckets */
370 ap_close_listeners_ex(my_bucket->listeners);
539 /* close unused listeners and pods */
542 ap_close_listeners_ex(all_buckets[i].listeners);
581 for (lr = my_bucket->listeners, i = num_listensocks; i--; lr = lr->next) {
639 lr = my_bucket->listeners;
832 /* The child process just closes listeners on AP_SIG_GRACEFUL.
1164 * to close their listeners, the
[all...]
/httpd/server/mpm/worker/
H A Dworker.c163 * maintained per listeners bucket, doubled up to MAX_SPAWN_RATE, and
172 * Current number of listeners buckets and maximum reached accross
182 ap_listen_rec *listeners; member in struct:worker_child_bucket
185 static worker_child_bucket *all_buckets, /* All listeners buckets */
718 for (lr = my_bucket->listeners; lr != NULL; lr = lr->next) {
784 if (!my_bucket->listeners->next) {
786 lr = my_bucket->listeners;
897 ap_close_listeners_ex(my_bucket->listeners);
1243 /* close unused listeners and pods */
1246 ap_close_listeners_ex(all_buckets[i].listeners);
[all...]
/httpd/server/mpm/event/
H A Devent.c371 * maintained per listeners bucket, doubled up to MAX_SPAWN_RATE, and
380 * Current number of listeners buckets and maximum reached accross
390 ap_listen_rec *listeners; member in struct:event_child_bucket
392 static event_child_bucket *all_buckets, /* All listeners buckets */
1275 ap_close_listeners_ex(my_bucket->listeners);
1344 for (lr = my_bucket->listeners; lr != NULL; lr = lr->next, i++) {
2517 /* close unused listeners and pods */
2520 ap_close_listeners_ex(all_buckets[i].listeners);
3166 /* Close our listeners, and then ask our children to do same */
3308 "could not duplicate listeners");
[all...]

Completed in 498 milliseconds