aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.h
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2019-11-06 19:03:18 +0300
committerRoman Arutyunyan <arut@nginx.com>2019-11-06 19:03:18 +0300
commit02ec15dc0d26df13a32074de030f8a57c162d593 (patch)
tree14feb0bf8f064c94098b677445099db2d0640677 /src/http/ngx_http_request.h
parent203898505ca4fde338d718960e485891ecd891f6 (diff)
downloadnginx-02ec15dc0d26df13a32074de030f8a57c162d593.tar.gz
nginx-02ec15dc0d26df13a32074de030f8a57c162d593.zip
Limit req: $limit_req_status variable.
The variable takes one of the values: PASSED, DELAYED, REJECTED, DELAYED_DRY_RUN or REJECTED_DRY_RUN.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r--src/http/ngx_http_request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h
index fc29359f5..d19a389dc 100644
--- a/src/http/ngx_http_request.h
+++ b/src/http/ngx_http_request.h
@@ -513,7 +513,7 @@ struct ngx_http_request_s {
* we use the single bits in the request structure
*/
unsigned limit_conn_set:1;
- unsigned limit_req_set:1;
+ unsigned limit_req_status:3;
unsigned limit_rate_set:1;
unsigned limit_rate_after_set:1;