2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002-2003 Igor Sysoev, http://sysoev.ru
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
#include <ngx_config.h>
|
2002-09-02 10:48:24 -04:00
|
|
|
#include <ngx_core.h>
|
2002-08-06 12:39:45 -04:00
|
|
|
#include <ngx_event.h>
|
|
|
|
|
2002-12-15 03:25:09 -03:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
static int ngx_select_init(ngx_log_t *log);
|
|
|
|
static void ngx_select_done(ngx_log_t *log);
|
|
|
|
static int ngx_select_add_event(ngx_event_t *ev, int event, u_int flags);
|
|
|
|
static int ngx_select_del_event(ngx_event_t *ev, int event, u_int flags);
|
|
|
|
static int ngx_select_process_events(ngx_log_t *log);
|
|
|
|
|
|
|
|
static char *ngx_select_init_conf(ngx_pool_t *pool, void *conf);
|
|
|
|
|
|
|
|
|
2002-12-15 03:25:09 -03:00
|
|
|
static fd_set master_read_fd_set;
|
|
|
|
static fd_set master_write_fd_set;
|
|
|
|
static fd_set work_read_fd_set;
|
|
|
|
static fd_set work_write_fd_set;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
#if (WIN32)
|
2002-12-15 03:25:09 -03:00
|
|
|
static int max_read;
|
|
|
|
static int max_write;
|
2002-08-06 12:39:45 -04:00
|
|
|
#else
|
2002-12-15 03:25:09 -03:00
|
|
|
static int max_fd;
|
2002-08-06 12:39:45 -04:00
|
|
|
#endif
|
|
|
|
|
2003-02-06 14:21:13 -03:00
|
|
|
static u_int nevents;
|
2002-09-27 11:05:29 -04:00
|
|
|
|
|
|
|
static ngx_event_t **event_index;
|
|
|
|
static ngx_event_t **ready_index;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
|
|
|
|
static ngx_str_t select_name = ngx_string("select");
|
|
|
|
|
|
|
|
ngx_event_module_t ngx_select_module_ctx = {
|
|
|
|
&select_name,
|
|
|
|
NULL, /* create configuration */
|
|
|
|
ngx_select_init_conf, /* init configuration */
|
|
|
|
|
|
|
|
{
|
|
|
|
ngx_select_add_event, /* add an event */
|
|
|
|
ngx_select_del_event, /* delete an event */
|
|
|
|
ngx_select_add_event, /* enable an event */
|
|
|
|
ngx_select_del_event, /* disable an event */
|
|
|
|
NULL, /* add an connection */
|
|
|
|
NULL, /* delete an connection */
|
|
|
|
ngx_select_process_events, /* process the events */
|
|
|
|
ngx_select_init, /* init the events */
|
|
|
|
ngx_select_done /* done the events */
|
2002-08-26 11:18:19 -04:00
|
|
|
}
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
ngx_module_t ngx_select_module = {
|
2003-05-27 08:18:54 -04:00
|
|
|
NGX_MODULE,
|
2003-05-19 12:39:14 -04:00
|
|
|
&ngx_select_module_ctx, /* module context */
|
|
|
|
NULL, /* module directives */
|
2003-05-27 08:18:54 -04:00
|
|
|
NGX_EVENT_MODULE, /* module type */
|
2003-05-19 12:39:14 -04:00
|
|
|
NULL /* init module */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int ngx_select_init(ngx_log_t *log)
|
|
|
|
{
|
|
|
|
ngx_event_conf_t *ecf;
|
|
|
|
|
2003-07-01 11:00:03 -04:00
|
|
|
ecf = ngx_event_get_conf(ngx_event_core_module);
|
2003-05-19 12:39:14 -04:00
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
FD_ZERO(&master_read_fd_set);
|
|
|
|
FD_ZERO(&master_write_fd_set);
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
ngx_test_null(event_index,
|
2003-05-19 12:39:14 -04:00
|
|
|
ngx_alloc(sizeof(ngx_event_t *) * 2 * ecf->connections, log),
|
2002-09-27 11:05:29 -04:00
|
|
|
NGX_ERROR);
|
|
|
|
|
|
|
|
ngx_test_null(ready_index,
|
2003-05-19 12:39:14 -04:00
|
|
|
ngx_alloc(sizeof(ngx_event_t *) * 2 * ecf->connections, log),
|
2002-09-27 11:05:29 -04:00
|
|
|
NGX_ERROR);
|
|
|
|
|
|
|
|
nevents = 0;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
if (ngx_event_timer_init(log) == NGX_ERROR) {
|
2003-01-26 18:08:14 -03:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
ngx_event_actions = ngx_select_module_ctx.actions;
|
|
|
|
|
|
|
|
ngx_event_flags = NGX_HAVE_LEVEL_EVENT
|
|
|
|
|NGX_HAVE_ONESHOT_EVENT
|
|
|
|
|NGX_USE_LEVEL_EVENT;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
#if (WIN32)
|
|
|
|
max_read = max_write = 0;
|
|
|
|
#else
|
|
|
|
max_fd = -1;
|
|
|
|
#endif
|
2002-09-27 11:05:29 -04:00
|
|
|
|
|
|
|
return NGX_OK;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
|
|
|
|
static void ngx_select_done(ngx_log_t *log)
|
|
|
|
{
|
2003-05-20 11:37:55 -04:00
|
|
|
ngx_event_timer_done(log);
|
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
ngx_free(event_index);
|
|
|
|
ngx_free(ready_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int ngx_select_add_event(ngx_event_t *ev, int event, u_int flags)
|
2002-08-06 12:39:45 -04:00
|
|
|
{
|
2002-12-24 14:30:59 -03:00
|
|
|
ngx_connection_t *c;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
c = ev->data;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-09-02 10:48:24 -04:00
|
|
|
ngx_log_debug(ev->log, "select fd:%d event:%d" _ c->fd _ event);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-12-24 04:09:57 -03:00
|
|
|
if (ev->index != NGX_INVALID_INDEX) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, ev->log, 0,
|
|
|
|
"%d:%d is already set", c->fd, event);
|
|
|
|
return NGX_OK;
|
|
|
|
}
|
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
#if (WIN32)
|
2002-09-02 10:48:24 -04:00
|
|
|
if ((event == NGX_READ_EVENT) && (max_read >= FD_SETSIZE)
|
|
|
|
|| (event == NGX_WRITE_EVENT) && (max_write >= FD_SETSIZE))
|
|
|
|
{
|
|
|
|
ngx_log_error(NGX_LOG_ERR, ev->log, 0,
|
|
|
|
"maximum number of descriptors "
|
|
|
|
"supported by select() is %d", FD_SETSIZE);
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event == NGX_READ_EVENT) {
|
|
|
|
FD_SET(c->fd, &master_read_fd_set);
|
2002-08-06 12:39:45 -04:00
|
|
|
max_read++;
|
2002-09-02 10:48:24 -04:00
|
|
|
|
|
|
|
} else if (event == NGX_WRITE_EVENT) {
|
|
|
|
FD_SET(c->fd, &master_write_fd_set);
|
2002-08-06 12:39:45 -04:00
|
|
|
max_write++;
|
|
|
|
}
|
|
|
|
#else
|
2003-05-20 11:37:55 -04:00
|
|
|
if (event == NGX_READ_EVENT) {
|
2002-09-02 10:48:24 -04:00
|
|
|
FD_SET(c->fd, &master_read_fd_set);
|
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
} else if (event == NGX_WRITE_EVENT) {
|
2002-09-02 10:48:24 -04:00
|
|
|
FD_SET(c->fd, &master_write_fd_set);
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
if (max_fd != -1 && max_fd < c->fd) {
|
2002-09-02 10:48:24 -04:00
|
|
|
max_fd = c->fd;
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2002-08-06 12:39:45 -04:00
|
|
|
#endif
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
ev->active = 1;
|
2003-05-20 11:37:55 -04:00
|
|
|
ev->oneshot = (flags & NGX_ONESHOT_EVENT) ? 1 : 0;
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
event_index[nevents] = ev;
|
|
|
|
ev->index = nevents;
|
|
|
|
nevents++;
|
2002-09-02 10:48:24 -04:00
|
|
|
|
|
|
|
return NGX_OK;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
|
|
|
|
static int ngx_select_del_event(ngx_event_t *ev, int event, u_int flags)
|
2002-08-06 12:39:45 -04:00
|
|
|
{
|
2003-05-19 12:39:14 -04:00
|
|
|
ngx_connection_t *c;
|
|
|
|
|
|
|
|
c = ev->data;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
if (ev->index == NGX_INVALID_INDEX) {
|
2002-12-15 03:25:09 -03:00
|
|
|
return NGX_OK;
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-12-15 03:25:09 -03:00
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_log_debug(c->log, "del event: %d, %d" _ c->fd _ event);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-12-06 13:32:33 -03:00
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
#if (WIN32)
|
2003-05-20 11:37:55 -04:00
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
if (event == NGX_READ_EVENT) {
|
|
|
|
FD_CLR(c->fd, &master_read_fd_set);
|
|
|
|
max_read--;
|
|
|
|
|
|
|
|
} else if (event == NGX_WRITE_EVENT) {
|
|
|
|
FD_CLR(c->fd, &master_write_fd_set);
|
|
|
|
max_write--;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
2003-05-20 11:37:55 -04:00
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
#else
|
2003-05-20 11:37:55 -04:00
|
|
|
|
|
|
|
if (event == NGX_READ_EVENT) {
|
2002-09-02 10:48:24 -04:00
|
|
|
FD_CLR(c->fd, &master_read_fd_set);
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
} else if (event == NGX_WRITE_EVENT) {
|
2002-09-02 10:48:24 -04:00
|
|
|
FD_CLR(c->fd, &master_write_fd_set);
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
if (max_fd == c->fd) {
|
2002-09-02 10:48:24 -04:00
|
|
|
max_fd = -1;
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-12-15 03:25:09 -03:00
|
|
|
if (ev->index < --nevents) {
|
2002-09-27 11:05:29 -04:00
|
|
|
event_index[ev->index] = event_index[nevents];
|
|
|
|
event_index[ev->index]->index = ev->index;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
ev->active = 0;
|
2002-12-15 03:25:09 -03:00
|
|
|
ev->index = NGX_INVALID_INDEX;
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
return NGX_OK;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2003-05-19 12:39:14 -04:00
|
|
|
|
|
|
|
static int ngx_select_process_events(ngx_log_t *log)
|
2002-08-06 12:39:45 -04:00
|
|
|
{
|
2003-02-06 14:21:13 -03:00
|
|
|
int ready, found;
|
|
|
|
u_int i, nready;
|
2003-01-26 18:08:14 -03:00
|
|
|
ngx_msec_t timer, delta;
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_event_t *ev;
|
2002-09-02 10:48:24 -04:00
|
|
|
ngx_connection_t *c;
|
2002-08-06 12:39:45 -04:00
|
|
|
struct timeval tv, *tp;
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
work_read_fd_set = master_read_fd_set;
|
|
|
|
work_write_fd_set = master_write_fd_set;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2003-01-26 18:08:14 -03:00
|
|
|
timer = ngx_event_find_timer();
|
|
|
|
|
|
|
|
if (timer) {
|
2002-08-06 12:39:45 -04:00
|
|
|
tv.tv_sec = timer / 1000;
|
|
|
|
tv.tv_usec = (timer % 1000) * 1000;
|
|
|
|
tp = &tv;
|
|
|
|
delta = ngx_msec();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
timer = 0;
|
|
|
|
tp = NULL;
|
|
|
|
delta = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !(WIN32)
|
|
|
|
if (max_fd == -1) {
|
2002-09-27 11:05:29 -04:00
|
|
|
for (i = 0; i < nevents; i++) {
|
|
|
|
c = (ngx_connection_t *) event_index[i]->data;
|
2003-05-20 11:37:55 -04:00
|
|
|
if (max_fd < c->fd) {
|
2002-09-02 10:48:24 -04:00
|
|
|
max_fd = c->fd;
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-09-02 10:48:24 -04:00
|
|
|
ngx_log_debug(log, "change max_fd: %d" _ max_fd);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-12-15 03:25:09 -03:00
|
|
|
for (i = 0; i < nevents; i++) {
|
|
|
|
ev = event_index[i];
|
|
|
|
c = (ngx_connection_t *) ev->data;
|
2002-12-24 04:09:57 -03:00
|
|
|
ngx_log_debug(log, "select: %d:%d" _ c->fd _ ev->write);
|
2002-12-15 03:25:09 -03:00
|
|
|
}
|
|
|
|
|
2002-09-16 11:01:44 -04:00
|
|
|
ngx_log_debug(log, "select timer: %d" _ timer);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
#if (WIN32)
|
2002-09-02 10:48:24 -04:00
|
|
|
if ((ready = select(0, &work_read_fd_set, &work_write_fd_set, NULL, tp))
|
2002-08-06 12:39:45 -04:00
|
|
|
#else
|
2002-09-02 10:48:24 -04:00
|
|
|
if ((ready = select(max_fd + 1, &work_read_fd_set, &work_write_fd_set,
|
|
|
|
NULL, tp))
|
2002-08-06 12:39:45 -04:00
|
|
|
#endif
|
2002-12-24 14:30:59 -03:00
|
|
|
== -1)
|
|
|
|
{
|
2002-09-16 11:01:44 -04:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_socket_errno, "select() failed");
|
2002-09-02 10:48:24 -04:00
|
|
|
return NGX_ERROR;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-09-16 11:01:44 -04:00
|
|
|
ngx_log_debug(log, "select ready %d" _ ready);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
if (timer) {
|
2003-04-28 11:06:39 -04:00
|
|
|
/* TODO: Linux returns time in tv */
|
2002-08-06 12:39:45 -04:00
|
|
|
delta = ngx_msec() - delta;
|
2003-03-20 12:09:44 -04:00
|
|
|
ngx_event_expire_timers(delta);
|
2002-08-06 12:39:45 -04:00
|
|
|
|
|
|
|
} else {
|
2002-12-24 14:30:59 -03:00
|
|
|
if (ready == 0) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, 0,
|
|
|
|
"select() returns no events without timeout");
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
2002-09-16 11:01:44 -04:00
|
|
|
ngx_log_debug(log, "select timer: %d, delta: %d" _ timer _ delta);
|
2002-12-24 14:30:59 -03:00
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
nready = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < nevents; i++) {
|
|
|
|
ev = event_index[i];
|
2002-09-02 10:48:24 -04:00
|
|
|
c = (ngx_connection_t *) ev->data;
|
2002-08-06 12:39:45 -04:00
|
|
|
found = 0;
|
|
|
|
|
|
|
|
if (ev->write) {
|
2002-09-02 10:48:24 -04:00
|
|
|
if (FD_ISSET(c->fd, &work_write_fd_set)) {
|
2002-08-06 12:39:45 -04:00
|
|
|
found = 1;
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
|
|
|
ngx_log_debug(log, "select write %d" _ c->fd);
|
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2002-09-02 10:48:24 -04:00
|
|
|
if (FD_ISSET(c->fd, &work_read_fd_set)) {
|
2002-08-06 12:39:45 -04:00
|
|
|
found = 1;
|
2002-12-24 14:30:59 -03:00
|
|
|
#if (NGX_DEBUG_EVENT)
|
|
|
|
ngx_log_debug(log, "select read %d" _ c->fd);
|
|
|
|
#endif
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) {
|
2002-09-27 11:05:29 -04:00
|
|
|
ready_index[nready++] = ev;
|
|
|
|
}
|
|
|
|
}
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
for (i = 0; i < nready; i++) {
|
|
|
|
ev = ready_index[i];
|
2002-12-24 14:30:59 -03:00
|
|
|
ready--;
|
|
|
|
|
|
|
|
if (!ev->active) {
|
|
|
|
continue;
|
|
|
|
}
|
2002-09-02 10:48:24 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
ev->ready = 1;
|
2002-08-06 12:39:45 -04:00
|
|
|
|
2002-09-27 11:05:29 -04:00
|
|
|
if (ev->oneshot) {
|
2003-05-19 12:39:14 -04:00
|
|
|
if (ev->timer_set) {
|
|
|
|
ngx_del_timer(ev);
|
|
|
|
ev->timer_set = 0;
|
|
|
|
}
|
2002-12-15 03:25:09 -03:00
|
|
|
|
2003-05-20 11:37:55 -04:00
|
|
|
if (ev->write) {
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_select_del_event(ev, NGX_WRITE_EVENT, 0);
|
2003-05-20 11:37:55 -04:00
|
|
|
} else {
|
2002-12-15 03:25:09 -03:00
|
|
|
ngx_select_del_event(ev, NGX_READ_EVENT, 0);
|
2003-05-20 11:37:55 -04:00
|
|
|
}
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2003-05-13 12:02:32 -04:00
|
|
|
ev->event_handler(ev);
|
2002-12-24 14:30:59 -03:00
|
|
|
}
|
2002-09-27 11:05:29 -04:00
|
|
|
|
2002-12-24 14:30:59 -03:00
|
|
|
if (ready != 0) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, 0, "select ready != events");
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
|
|
|
|
2002-09-02 10:48:24 -04:00
|
|
|
return NGX_OK;
|
2002-08-06 12:39:45 -04:00
|
|
|
}
|
2003-05-19 12:39:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
static char *ngx_select_init_conf(ngx_pool_t *pool, void *conf)
|
|
|
|
{
|
|
|
|
ngx_event_conf_t *ecf;
|
|
|
|
|
2003-07-01 11:00:03 -04:00
|
|
|
ecf = ngx_event_get_conf(ngx_event_core_module);
|
2003-05-19 12:39:14 -04:00
|
|
|
|
2003-06-11 11:28:34 -04:00
|
|
|
/* the default FD_SETSIZE is 1024U in FreeBSD 5.x */
|
|
|
|
|
|
|
|
if ((unsigned) ecf->connections > FD_SETSIZE) {
|
2003-05-19 12:39:14 -04:00
|
|
|
return "maximum number of connections "
|
|
|
|
"supported by select() is " ngx_value(FD_SETSIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NGX_CONF_OK;
|
|
|
|
}
|