comparison src/http/ngx_http_parse.c @ 268:a0c9f21ee120 NGINX_0_5_4

nginx 0.5.4 *) Feature: the "perl" directive may be used inside the "limit_except" block. *) Bugfix: the ngx_http_dav_module required the "Date" request header line for the DELETE method. *) Bugfix: if one only parameter was used in the "dav_access" directive, then nginx might report about configuration error. *) Bugfix: a segmentation fault might occur if the $host variable was used; bug appeared in 0.4.14.
author Igor Sysoev <http://sysoev.ru>
date Fri, 15 Dec 2006 00:00:00 +0300
parents 6ae1357b7b7c
children 27d9d1f26b38
comparison
equal deleted inserted replaced
267:fb0eff2f3efe 268:a0c9f21ee120
288 r->host_end = p; 288 r->host_end = p;
289 r->uri_start = p; 289 r->uri_start = p;
290 state = sw_after_slash_in_uri; 290 state = sw_after_slash_in_uri;
291 break; 291 break;
292 default: 292 default:
293 r->host_end = p;
293 return NGX_HTTP_PARSE_INVALID_REQUEST; 294 return NGX_HTTP_PARSE_INVALID_REQUEST;
294 } 295 }
295 break; 296 break;
296 297
297 case sw_port: 298 case sw_port: