comparison src/event/ngx_event.h @ 214:0ad9eeb6ac7f NGINX_0_3_54

nginx 0.3.54 *) Feature: nginx now logs the subrequest information to the error log. *) Feature: the "proxy_next_upstream", "fastcgi_next_upstream", and "memcached_next_upstream" directives support the "off" parameter. *) Feature: the "debug_connection" directive supports the CIDR address form. *) Bugfix: if a response of proxied server or FastCGI server was converted from UTF-8 or back, then it may be transferred incomplete. *) Bugfix: the $upstream_response_time variable had the time of the first request to a backend only. *) Bugfix: nginx could not be built on amd64 platform; bug appeared in 0.3.53.
author Igor Sysoev <http://sysoev.ru>
date Tue, 11 Jul 2006 00:00:00 +0400
parents 73e8476f9142
children c982febb7588
comparison
equal deleted inserted replaced
213:405beeeadf7f 214:0ad9eeb6ac7f
187 #endif 187 #endif
188 }; 188 };
189 189
190 190
191 typedef struct { 191 typedef struct {
192 in_addr_t mask;
193 in_addr_t addr;
194 } ngx_event_debug_t;
195
196
197 typedef struct {
192 ngx_int_t (*add)(ngx_event_t *ev, int event, u_int flags); 198 ngx_int_t (*add)(ngx_event_t *ev, int event, u_int flags);
193 ngx_int_t (*del)(ngx_event_t *ev, int event, u_int flags); 199 ngx_int_t (*del)(ngx_event_t *ev, int event, u_int flags);
194 200
195 ngx_int_t (*enable)(ngx_event_t *ev, int event, u_int flags); 201 ngx_int_t (*enable)(ngx_event_t *ev, int event, u_int flags);
196 ngx_int_t (*disable)(ngx_event_t *ev, int event, u_int flags); 202 ngx_int_t (*disable)(ngx_event_t *ev, int event, u_int flags);