Lines 146-151
AP_DECLARE_NONSTD(int) ap_close_selected_listeners(ap_slave_t *);
Link Here
|
146 |
* LISTEN_COMMANDS in their command_rec table so that these functions are |
146 |
* LISTEN_COMMANDS in their command_rec table so that these functions are |
147 |
* called. |
147 |
* called. |
148 |
*/ |
148 |
*/ |
|
|
149 |
AP_DECLARE_NONSTD(const char *) ap_set_ttl_limit(cmd_parms *cmd, void *dummy, const char *arg); |
149 |
AP_DECLARE_NONSTD(const char *) ap_set_listenbacklog(cmd_parms *cmd, void *dummy, const char *arg); |
150 |
AP_DECLARE_NONSTD(const char *) ap_set_listenbacklog(cmd_parms *cmd, void *dummy, const char *arg); |
150 |
AP_DECLARE_NONSTD(const char *) ap_set_listencbratio(cmd_parms *cmd, void *dummy, const char *arg); |
151 |
AP_DECLARE_NONSTD(const char *) ap_set_listencbratio(cmd_parms *cmd, void *dummy, const char *arg); |
151 |
AP_DECLARE_NONSTD(const char *) ap_set_listener(cmd_parms *cmd, void *dummy, |
152 |
AP_DECLARE_NONSTD(const char *) ap_set_listener(cmd_parms *cmd, void *dummy, |
Lines 161-166
AP_DECLARE_NONSTD(const char *) ap_set_accept_errors_nonfatal(cmd_parms *cmd,
Link Here
|
161 |
int flag); |
162 |
int flag); |
162 |
|
163 |
|
163 |
#define LISTEN_COMMANDS \ |
164 |
#define LISTEN_COMMANDS \ |
|
|
165 |
AP_INIT_TAKE1("TTLimit", ap_set_ttl_limit, NULL, RSRC_CONF, \ |
166 |
"Maximum TTL value which will be accepted"), \ |
164 |
AP_INIT_TAKE1("ListenBacklog", ap_set_listenbacklog, NULL, RSRC_CONF, \ |
167 |
AP_INIT_TAKE1("ListenBacklog", ap_set_listenbacklog, NULL, RSRC_CONF, \ |
165 |
"Maximum length of the queue of pending connections, as used by listen(2)"), \ |
168 |
"Maximum length of the queue of pending connections, as used by listen(2)"), \ |
166 |
AP_INIT_TAKE1("ListenCoresBucketsRatio", ap_set_listencbratio, NULL, RSRC_CONF, \ |
169 |
AP_INIT_TAKE1("ListenCoresBucketsRatio", ap_set_listencbratio, NULL, RSRC_CONF, \ |