comparison src/event/ngx_event_connect.h @ 6:80ba094c6b3e NGINX_0_1_3

nginx 0.1.3 *) Feature: the ngx_http_autoindex_module and the autoindex directive. *) Feature: the proxy_set_x_url directive. *) Bugfix: proxy module may get caught in an endless loop when sendfile is not used.
author Igor Sysoev <http://sysoev.ru>
date Mon, 25 Oct 2004 00:00:00 +0400
parents f0b350454894
children 46833bd150cb
comparison
equal deleted inserted replaced
5:985c56ebe724 6:80ba094c6b3e
29 29
30 typedef struct { 30 typedef struct {
31 ngx_int_t current; 31 ngx_int_t current;
32 ngx_int_t number; 32 ngx_int_t number;
33 ngx_int_t max_fails; 33 ngx_int_t max_fails;
34 ngx_int_t fail_timeout; 34 time_t fail_timeout;
35 ngx_int_t last_cached; 35 ngx_int_t last_cached;
36 36
37 /* ngx_mutex_t *mutex; */ 37 /* ngx_mutex_t *mutex; */
38 ngx_connection_t **cached; 38 ngx_connection_t **cached;
39 39