comparison src/http/ngx_http_request.c @ 631:5d2b8078c1c2 release-0.3.37

nginx-0.3.37-RELEASE import *) Feature: the "limit_except" directive. *) Feature: the "if" directive supports the "!~", "!~*", "-f", and "!-f" operators. *) Feature: the ngx_http_perl_module supports the $r->request_body method. *) Bugfix: in the ngx_http_addition_filter_module.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 07 Apr 2006 14:08:04 +0000
parents 65bf042c0b4f
children f971949ffb58
comparison
equal deleted inserted replaced
630:375dab4fd227 631:5d2b8078c1c2
408 408
409 r->main = r; 409 r->main = r;
410 410
411 r->start_time = ngx_time(); 411 r->start_time = ngx_time();
412 412
413 r->method = NGX_HTTP_UNKNOWN;
414
413 r->headers_in.content_length_n = -1; 415 r->headers_in.content_length_n = -1;
414 r->headers_in.keep_alive_n = -1; 416 r->headers_in.keep_alive_n = -1;
415 r->headers_out.content_length_n = -1; 417 r->headers_out.content_length_n = -1;
416 r->headers_out.last_modified_time = -1; 418 r->headers_out.last_modified_time = -1;
417 419