lrcf               53 http/modules/ngx_http_limit_req_module.c static ngx_int_t ngx_http_limit_req_lookup(ngx_http_limit_req_conf_t *lrcf,
lrcf              147 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_conf_t  *lrcf;
lrcf              153 http/modules/ngx_http_limit_req_module.c     lrcf = ngx_http_get_module_loc_conf(r, ngx_http_limit_req_module);
lrcf              155 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone == NULL) {
lrcf              159 http/modules/ngx_http_limit_req_module.c     ctx = lrcf->shm_zone->data;
lrcf              189 http/modules/ngx_http_limit_req_module.c     rc = ngx_http_limit_req_lookup(lrcf, hash, vv->data, len, &excess);
lrcf              239 http/modules/ngx_http_limit_req_module.c         ngx_log_error(lrcf->limit_log_level, r->connection->log, 0,
lrcf              241 http/modules/ngx_http_limit_req_module.c                       excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
lrcf              248 http/modules/ngx_http_limit_req_module.c     if (lrcf->nodelay) {
lrcf              252 http/modules/ngx_http_limit_req_module.c     ngx_log_error(lrcf->delay_log_level, r->connection->log, 0,
lrcf              254 http/modules/ngx_http_limit_req_module.c                   excess / 1000, excess % 1000, &lrcf->shm_zone->shm.name);
lrcf              344 http/modules/ngx_http_limit_req_module.c ngx_http_limit_req_lookup(ngx_http_limit_req_conf_t *lrcf, ngx_uint_t hash,
lrcf              355 http/modules/ngx_http_limit_req_module.c     ctx = lrcf->shm_zone->data;
lrcf              396 http/modules/ngx_http_limit_req_module.c                 if ((ngx_uint_t) excess > lrcf->burst) {
lrcf              723 http/modules/ngx_http_limit_req_module.c     ngx_http_limit_req_conf_t  *lrcf = conf;
lrcf              729 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone) {
lrcf              744 http/modules/ngx_http_limit_req_module.c             lrcf->shm_zone = ngx_shared_memory_add(cf, &s, 0,
lrcf              746 http/modules/ngx_http_limit_req_module.c             if (lrcf->shm_zone == NULL) {
lrcf              766 http/modules/ngx_http_limit_req_module.c             lrcf->nodelay = 1;
lrcf              775 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone == NULL) {
lrcf              782 http/modules/ngx_http_limit_req_module.c     if (lrcf->shm_zone->data == NULL) {
lrcf              785 http/modules/ngx_http_limit_req_module.c                            &lrcf->shm_zone->shm.name);
lrcf              789 http/modules/ngx_http_limit_req_module.c     lrcf->burst = burst * 1000;