diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-11-10 15:22:33 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-11-10 15:22:33 +0000 |
commit | abe378e820d16fe5fa40a5828354a4ba495b5573 (patch) | |
tree | 619f8797a181140a6c524bf9e8cf47b1fba21fa5 /src/http/ngx_http_request.h | |
parent | 74b7e5fadd33804eefa37ff86764b512e2de379b (diff) | |
download | nginx-abe378e820d16fe5fa40a5828354a4ba495b5573.tar.gz nginx-abe378e820d16fe5fa40a5828354a4ba495b5573.zip |
ngx_http_limit_req_module
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 2486ca5c0..2a3216158 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -438,10 +438,12 @@ struct ngx_http_request_s { unsigned no_cache:1; /* - * instead of using the request context data in ngx_http_limit_zone_module - * we use the single bit in the request structure + * instead of using the request context data in + * ngx_http_limit_zone_module and ngx_http_limit_req_module + * we use the single bits in the request structure */ unsigned limit_zone_set:1; + unsigned limit_req_set:1; #if 0 unsigned cacheable:1; |