comparison src/http/ngx_http_request.h @ 7504:c19ca381b2e6

Variables support in limit_rate and limit_rate_after (ticket #293).
author Ruslan Ermilov <ru@nginx.com>
date Wed, 24 Apr 2019 16:38:54 +0300
parents 81d49f85afed
children 776d1bebdca2
comparison
equal deleted inserted replaced
7503:b82162b8496a 7504:c19ca381b2e6
512 * ngx_http_limit_conn_module and ngx_http_limit_req_module 512 * ngx_http_limit_conn_module and ngx_http_limit_req_module
513 * we use the single bits in the request structure 513 * we use the single bits in the request structure
514 */ 514 */
515 unsigned limit_conn_set:1; 515 unsigned limit_conn_set:1;
516 unsigned limit_req_set:1; 516 unsigned limit_req_set:1;
517
518 unsigned limit_rate_set:1;
519 unsigned limit_rate_after_set:1;
517 520
518 #if 0 521 #if 0
519 unsigned cacheable:1; 522 unsigned cacheable:1;
520 #endif 523 #endif
521 524