comparison src/http/ngx_http_request.h @ 276:c5c2b2883984 NGINX_0_5_8

nginx 0.5.8 *) Bugfix: a segmentation fault might occur if "client_body_in_file_only on" was used and a request body was small. *) Bugfix: a segmentation fault occurred if "client_body_in_file_only on" and "proxy_pass_request_body off" or "fastcgi_pass_request_body off" directives were used, and nginx switched to a next upstream. *) Bugfix: if the "proxy_buffering off" directive was used and a client connection was non-active, then the connection was closed after send timeout; bug appeared in 0.4.7. *) Bugfix: if the "epoll" method was used and a client closed a connection prematurely, then nginx closed the connection after a send timeout only. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used. *) Bugfixes in the "limit_zone" directive.
author Igor Sysoev <http://sysoev.ru>
date Fri, 19 Jan 2007 00:00:00 +0300
parents 29a6403156b0
children 704622b2528a
comparison
equal deleted inserted replaced
275:1779577cb845 276:c5c2b2883984
75 #define NGX_HTTP_NOT_FOUND 404 75 #define NGX_HTTP_NOT_FOUND 404
76 #define NGX_HTTP_NOT_ALLOWED 405 76 #define NGX_HTTP_NOT_ALLOWED 405
77 #define NGX_HTTP_REQUEST_TIME_OUT 408 77 #define NGX_HTTP_REQUEST_TIME_OUT 408
78 #define NGX_HTTP_CONFLICT 409 78 #define NGX_HTTP_CONFLICT 409
79 #define NGX_HTTP_LENGTH_REQUIRED 411 79 #define NGX_HTTP_LENGTH_REQUIRED 411
80 #define NGX_HTTP_PRECONDITION_FAILED 412
80 #define NGX_HTTP_REQUEST_ENTITY_TOO_LARGE 413 81 #define NGX_HTTP_REQUEST_ENTITY_TOO_LARGE 413
81 #define NGX_HTTP_REQUEST_URI_TOO_LARGE 414 82 #define NGX_HTTP_REQUEST_URI_TOO_LARGE 414
82 #define NGX_HTTP_UNSUPPORTED_MEDIA_TYPE 415 83 #define NGX_HTTP_UNSUPPORTED_MEDIA_TYPE 415
83 #define NGX_HTTP_RANGE_NOT_SATISFIABLE 416 84 #define NGX_HTTP_RANGE_NOT_SATISFIABLE 416
84 85
191 #endif 192 #endif
192 193
193 #if (NGX_HTTP_DAV) 194 #if (NGX_HTTP_DAV)
194 ngx_table_elt_t *depth; 195 ngx_table_elt_t *depth;
195 ngx_table_elt_t *destination; 196 ngx_table_elt_t *destination;
197 ngx_table_elt_t *overwrite;
196 ngx_table_elt_t *date; 198 ngx_table_elt_t *date;
197 #endif 199 #endif
198 200
199 ngx_str_t user; 201 ngx_str_t user;
200 ngx_str_t passwd; 202 ngx_str_t passwd;