comparison src/http/ngx_http_request.h @ 396:349057ecf4d5 NGINX_0_7_10

nginx 0.7.10 *) Bugfix: in the "addition_types", "charset_types", "gzip_types", "ssi_types", "sub_filter_types", and "xslt_types" directives; the bugs had appeared in 0.7.9. *) Bugfix: of recursive error_page for 500 status code. *) Bugfix: now the ngx_http_realip_module set address not for whole keepalive connection, but for each request passed via the connection.
author Igor Sysoev <http://sysoev.ru>
date Wed, 13 Aug 2008 00:00:00 +0400
parents 34fb3a573548
children 6ebbca3d5ed7
comparison
equal deleted inserted replaced
395:ebf3256f0c2b 396:349057ecf4d5
433 unsigned gzip:2; 433 unsigned gzip:2;
434 434
435 unsigned proxy:1; 435 unsigned proxy:1;
436 unsigned bypass_cache:1; 436 unsigned bypass_cache:1;
437 unsigned no_cache:1; 437 unsigned no_cache:1;
438
439 #if (NGX_HTTP_REALIP)
440
441 /*
442 * instead of using the request context data in ngx_http_realip_module
443 * we use the single bit in the request structure
444 */
445 unsigned realip_set:1;
446
447 #endif
448 438
449 /* 439 /*
450 * instead of using the request context data in ngx_http_limit_zone_module 440 * instead of using the request context data in ngx_http_limit_zone_module
451 * we use the single bit in the request structure 441 * we use the single bit in the request structure
452 */ 442 */