comparison src/http/ngx_http_request.h @ 3313:118169a8ec92

refactor gzip_vary handling
author Igor Sysoev <igor@sysoev.ru>
date Thu, 12 Nov 2009 13:41:56 +0000
parents d430c6ab1c99
children 63fafb988446
comparison
equal deleted inserted replaced
3312:dddca6f42e7b 3313:118169a8ec92
455 unsigned waited:1; 455 unsigned waited:1;
456 456
457 #if (NGX_HTTP_CACHE) 457 #if (NGX_HTTP_CACHE)
458 unsigned cached:1; 458 unsigned cached:1;
459 #endif 459 #endif
460 unsigned gzip:2; 460
461 #if (NGX_HTTP_GZIP)
462 unsigned gzip_tested:1;
463 unsigned gzip_ok:1;
464 unsigned gzip_vary:1;
465 #endif
461 466
462 unsigned proxy:1; 467 unsigned proxy:1;
463 unsigned bypass_cache:1; 468 unsigned bypass_cache:1;
464 unsigned no_cache:1; 469 unsigned no_cache:1;
465 470