comparison src/http/ngx_http_request.h @ 572:ff463db0be31 NGINX_0_8_38

nginx 0.8.38 *) Feature: the "proxy_no_cache" and "fastcgi_no_cache" directives. *) Feature: now the "rewrite" directive does a redirect automatically if the $scheme variable is used. Thanks to Piotr Sikora. *) Bugfix: now "limit_req" delay directive conforms to the described algorithm. Thanks to Maxim Dounin. *) Bugfix: the $uid_got variable might not be used in the SSI and perl modules.
author Igor Sysoev <http://sysoev.ru>
date Mon, 24 May 2010 00:00:00 +0400
parents 7fa8dc2315bd
children 7858d4f8dec4
comparison
equal deleted inserted replaced
571:5b59e716792b 572:ff463db0be31
54 #define NGX_HTTP_PARSE_INVALID_09_METHOD 12 54 #define NGX_HTTP_PARSE_INVALID_09_METHOD 12
55 55
56 #define NGX_HTTP_PARSE_INVALID_HEADER 13 56 #define NGX_HTTP_PARSE_INVALID_HEADER 13
57 57
58 58
59 #define NGX_HTTP_ZERO_IN_URI 1 59 /* unused 1 */
60 #define NGX_HTTP_SUBREQUEST_IN_MEMORY 2 60 #define NGX_HTTP_SUBREQUEST_IN_MEMORY 2
61 #define NGX_HTTP_SUBREQUEST_WAITED 4 61 #define NGX_HTTP_SUBREQUEST_WAITED 4
62 #define NGX_HTTP_LOG_UNSAFE 8 62 #define NGX_HTTP_LOG_UNSAFE 8
63 63
64 64
432 /* URI with "%" */ 432 /* URI with "%" */
433 unsigned quoted_uri:1; 433 unsigned quoted_uri:1;
434 434
435 /* URI with "+" */ 435 /* URI with "+" */
436 unsigned plus_in_uri:1; 436 unsigned plus_in_uri:1;
437
438 /* URI with "\0" or "%00" */
439 unsigned zero_in_uri:1;
440 437
441 unsigned invalid_header:1; 438 unsigned invalid_header:1;
442 439
443 unsigned valid_location:1; 440 unsigned valid_location:1;
444 unsigned valid_unparsed_uri:1; 441 unsigned valid_unparsed_uri:1;