diff options
author | Ruslan Ermilov <ru@nginx.com> | 2019-04-24 16:38:54 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2019-04-24 16:38:54 +0300 |
commit | 0e2653877eaa60d3cbc0c8fffd72434871670543 (patch) | |
tree | 7e410ab933a7f1aa1adc10d6899c219e7c49f0bc /src/http/ngx_http_request.h | |
parent | 2ace7fc3e683fcfa44ff9c355face60983db7eae (diff) | |
download | nginx-0e2653877eaa60d3cbc0c8fffd72434871670543.tar.gz nginx-0e2653877eaa60d3cbc0c8fffd72434871670543.zip |
Variables support in limit_rate and limit_rate_after (ticket #293).
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index fce70efe6..fc29359f5 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -515,6 +515,9 @@ struct ngx_http_request_s { unsigned limit_conn_set:1; unsigned limit_req_set:1; + unsigned limit_rate_set:1; + unsigned limit_rate_after_set:1; + #if 0 unsigned cacheable:1; #endif |