comparison src/http/ngx_http_core_module.h @ 70:8ad297c88dcb NGINX_0_1_35

nginx 0.1.35 *) Feature: the "working_directory" directive. *) Feature: the "port_in_redirect" directive. *) Bugfix: the segmentation fault was occurred if the backend response header was in several packets; bug appeared in 0.1.29. *) Bugfix: if more than 10 servers were configured or some server did not use the "listen" directive, then the segmentation fault was occurred on the start. *) Bugfix: the segmentation fault might occur if the response was bigger than the temporary file. *) Bugfix: nginx returned the 400 response on requests like "GET http://www.domain.com/uri HTTP/1.0"; bug appeared in 0.1.28.
author Igor Sysoev <http://sysoev.ru>
date Tue, 07 Jun 2005 00:00:00 +0400
parents df7d3fff122b
children b31656313b59
comparison
equal deleted inserted replaced
69:cce7ea52608c 70:8ad297c88dcb
18 in_port_t port; 18 in_port_t port;
19 int family; 19 int family;
20 ngx_str_t file_name; 20 ngx_str_t file_name;
21 ngx_int_t line; 21 ngx_int_t line;
22 22
23 unsigned default_server:1; 23 ngx_uint_t default_server; /* unsigned default_server:1; */
24 } ngx_http_listen_t; 24 } ngx_http_listen_t;
25 25
26 26
27 typedef enum { 27 typedef enum {
28 NGX_HTTP_FIND_CONFIG_PHASE = 0, 28 NGX_HTTP_FIND_CONFIG_PHASE = 0,
204 ngx_flag_t internal; /* internal */ 204 ngx_flag_t internal; /* internal */
205 ngx_flag_t sendfile; /* sendfile */ 205 ngx_flag_t sendfile; /* sendfile */
206 ngx_flag_t tcp_nopush; /* tcp_nopush */ 206 ngx_flag_t tcp_nopush; /* tcp_nopush */
207 ngx_flag_t tcp_nodelay; /* tcp_nodelay */ 207 ngx_flag_t tcp_nodelay; /* tcp_nodelay */
208 ngx_flag_t reset_timedout_connection; /* reset_timedout_connection */ 208 ngx_flag_t reset_timedout_connection; /* reset_timedout_connection */
209 ngx_flag_t port_in_redirect; /* port_in_redirect */
209 ngx_flag_t msie_padding; /* msie_padding */ 210 ngx_flag_t msie_padding; /* msie_padding */
210 211
211 ngx_array_t *error_pages; /* error_page */ 212 ngx_array_t *error_pages; /* error_page */
212 213
213 ngx_path_t *client_body_temp_path; /* client_body_temp_path */ 214 ngx_path_t *client_body_temp_path; /* client_body_temp_path */