Home
last modified time | relevance | path

Searched refs:send_window (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/nginx-1.16.1/src/http/v2/
H A Dngx_http_v2_filter_module.c1486 if (limit == 0 || limit > (off_t) h2c->send_window) { in ngx_http_v2_send_chain()
1487 limit = h2c->send_window; in ngx_http_v2_send_chain()
1490 if (limit > stream->send_window) { in ngx_http_v2_send_chain()
1491 limit = (stream->send_window > 0) ? stream->send_window : 0; in ngx_http_v2_send_chain()
1583 h2c->send_window -= frame_size; in ngx_http_v2_send_chain()
1585 stream->send_window -= frame_size; in ngx_http_v2_send_chain()
1756 stream->node->id, h2c->send_window, stream->send_window); in ngx_http_v2_flow_control()
1758 if (stream->send_window <= 0) { in ngx_http_v2_flow_control()
1763 if (h2c->send_window == 0) { in ngx_http_v2_flow_control()
2126 if (h2c->send_window == 0 && window) { in ngx_http_v2_filter_cleanup()
[all …]
H A Dngx_http_v2.h130 size_t send_window; member
191 ssize_t send_window; member
H A Dngx_http_v2.c266 h2c->send_window = NGX_HTTP_V2_DEFAULT_WINDOW; in ngx_http_v2_init()
2318 stream->send_window += window; in ngx_http_v2_state_window_update()
2336 if (window > NGX_HTTP_V2_MAX_WINDOW - h2c->send_window) { in ngx_http_v2_state_window_update()
2342 window, h2c->send_window); in ngx_http_v2_state_window_update()
2347 h2c->send_window += window; in ngx_http_v2_state_window_update()
2366 if (h2c->send_window == 0) { in ngx_http_v2_state_window_update()
3121 stream->send_window = h2c->init_window; in ngx_http_v2_create_stream()
4661 && stream->send_window in ngx_http_v2_adjust_windows()
4674 stream->send_window += delta; in ngx_http_v2_adjust_windows()
4678 node->id, stream->send_window); in ngx_http_v2_adjust_windows()
[all …]
/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_grpc_module.c61 size_t send_window; member
84 ssize_t send_window; member
1189 limit = ngx_max(0, ctx->send_window); in ngx_http_grpc_body_output_filter()
1191 if (limit > ctx->connection->send_window) { in ngx_http_grpc_body_output_filter()
1192 limit = ctx->connection->send_window; in ngx_http_grpc_body_output_filter()
1197 limit, ctx->send_window, ctx->connection->send_window); in ngx_http_grpc_body_output_filter()
1310 ctx->send_window -= len; in ngx_http_grpc_body_output_filter()
1311 ctx->connection->send_window -= len; in ngx_http_grpc_body_output_filter()
1398 limit, ctx->send_window, ctx->connection->send_window); in ngx_http_grpc_body_output_filter()
3512 ctx->send_window += ctx->window_update; in ngx_http_grpc_parse_window_update()
[all …]