comparison src/http/ngx_http_core_module.h @ 176:c0552e5ab567

nginx-0.0.1-2003-11-09-23:03:38 import; separate building
author Igor Sysoev <igor@sysoev.ru>
date Sun, 09 Nov 2003 20:03:38 +0000
parents 96993d4d5067
children 02a715e85df1
comparison
equal deleted inserted replaced
175:e92c2c647c57 176:c0552e5ab567
98 ngx_str_t type; 98 ngx_str_t type;
99 } ngx_http_type_t; 99 } ngx_http_type_t;
100 100
101 101
102 typedef struct { 102 typedef struct {
103 int code;
104 ngx_str_t uri;
105 } ngx_http_err_page_t;
106
107
108 typedef struct {
103 ngx_str_t name; /* location name */ 109 ngx_str_t name; /* location name */
104 void **loc_conf ; /* pointer to the modules' loc_conf */ 110 void **loc_conf ; /* pointer to the modules' loc_conf */
105 111
106 int (*handler) (ngx_http_request_t *r); 112 int (*handler) (ngx_http_request_t *r);
107 113
118 ngx_msec_t keepalive_timeout; /* keepalive_timeout */ 124 ngx_msec_t keepalive_timeout; /* keepalive_timeout */
119 ngx_msec_t lingering_time; /* lingering_time */ 125 ngx_msec_t lingering_time; /* lingering_time */
120 ngx_msec_t lingering_timeout; /* lingering_timeout */ 126 ngx_msec_t lingering_timeout; /* lingering_timeout */
121 127
122 int msie_padding; /* msie_padding */ 128 int msie_padding; /* msie_padding */
129 ngx_array_t *error_pages; /* error_page */
123 130
124 ngx_log_t *err_log; 131 ngx_log_t *err_log;
125 } ngx_http_core_loc_conf_t; 132 } ngx_http_core_loc_conf_t;
126 133
127 134