diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2005-03-04 14:06:57 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2005-03-04 14:06:57 +0000 |
| commit | 8184d1b3a72c31e7e6492fc189d687ce85548279 (patch) | |
| tree | 34e977c47f852d35117464b3cd5e82253fb4fa04 /src/event/modules/ngx_poll_module.c | |
| parent | 7ad4a94eee3e17e073d6e8b638b7bd0a2209d2df (diff) | |
| download | nginx-release-0.1.24.tar.gz nginx-release-0.1.24.tar.bz2 | |
nginx-0.1.24-RELEASE importrelease-0.1.24
*) Feature: the ngx_http_ssi_filter_module supports the QUERY_STRING
and DOCUMENT_URI variables.
*) Bugfix: the ngx_http_autoindex_module may some times return the 404
response for existent directory, if this directory was used in
"alias" directive.
*) Bugfix: the ngx_http_ssi_filter_module ran incorrectly for large
responses.
*) Bugfix: the lack of the "Referer" header line was always accounted
as valid referrer.
Diffstat (limited to '')
| -rw-r--r-- | src/event/modules/ngx_poll_module.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/event/modules/ngx_poll_module.c b/src/event/modules/ngx_poll_module.c index 12726b58d..6ea3af4e4 100644 --- a/src/event/modules/ngx_poll_module.c +++ b/src/event/modules/ngx_poll_module.c @@ -60,7 +60,8 @@ ngx_module_t ngx_poll_module = { -static ngx_int_t ngx_poll_init(ngx_cycle_t *cycle) +static ngx_int_t +ngx_poll_init(ngx_cycle_t *cycle) { struct pollfd *list; @@ -106,7 +107,8 @@ static ngx_int_t ngx_poll_init(ngx_cycle_t *cycle) } -static void ngx_poll_done(ngx_cycle_t *cycle) +static void +ngx_poll_done(ngx_cycle_t *cycle) { ngx_free(event_list); #if 0 @@ -120,7 +122,8 @@ static void ngx_poll_done(ngx_cycle_t *cycle) } -static ngx_int_t ngx_poll_add_event(ngx_event_t *ev, int event, u_int flags) +static ngx_int_t +ngx_poll_add_event(ngx_event_t *ev, int event, u_int flags) { ngx_event_t *e; ngx_connection_t *c; @@ -173,7 +176,8 @@ static ngx_int_t ngx_poll_add_event(ngx_event_t *ev, int event, u_int flags) } -static ngx_int_t ngx_poll_del_event(ngx_event_t *ev, int event, u_int flags) +static ngx_int_t +ngx_poll_del_event(ngx_event_t *ev, int event, u_int flags) { ngx_uint_t i; ngx_cycle_t **cycle; @@ -260,7 +264,8 @@ static ngx_int_t ngx_poll_del_event(ngx_event_t *ev, int event, u_int flags) } -static ngx_int_t ngx_poll_process_events(ngx_cycle_t *cycle) +static ngx_int_t +ngx_poll_process_events(ngx_cycle_t *cycle) { int ready, revents; ngx_int_t i, nready; @@ -590,7 +595,8 @@ static ngx_int_t ngx_poll_process_events(ngx_cycle_t *cycle) } -static char *ngx_poll_init_conf(ngx_cycle_t *cycle, void *conf) +static char * +ngx_poll_init_conf(ngx_cycle_t *cycle, void *conf) { ngx_event_conf_t *ecf; |
