comparison src/http/v2/ngx_http_v2_filter_module.c @ 7204:e44c297a6b95

HTTP/2: style.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 15 Feb 2018 02:34:16 +0300
parents 8b0553239592
children 3d2b0b02bd3d
comparison
equal deleted inserted replaced
7203:8b0553239592 7204:e44c297a6b95
927 "non-absolute path \"%V\" not pushed", path); 927 "non-absolute path \"%V\" not pushed", path);
928 return NGX_DECLINED; 928 return NGX_DECLINED;
929 } 929 }
930 930
931 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0, 931 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, h2c->connection->log, 0,
932 "http2 pushing:%ui limit:%ui", 932 "http2 pushing:%ui limit:%ui",
933 h2c->pushing, h2c->concurrent_pushes); 933 h2c->pushing, h2c->concurrent_pushes);
934 934
935 if (h2c->pushing >= h2c->concurrent_pushes) { 935 if (h2c->pushing >= h2c->concurrent_pushes) {
936 return NGX_ABORT; 936 return NGX_ABORT;
937 } 937 }
938 938