From 7c4b4f4d540de7959311ab0f6bfafac5ab46f67b Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Sat, 5 Feb 2022 12:54:54 +0300 Subject: QUIC: stream lingering. Now ngx_quic_stream_t is decoupled from ngx_connection_t in a way that it can persist after connection is closed by application. During this period, server is expecting stream final size from client for correct flow control. Also, buffered output is sent to client as more flow control credit is granted. --- src/http/v3/ngx_http_v3_uni.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/http') diff --git a/src/http/v3/ngx_http_v3_uni.c b/src/http/v3/ngx_http_v3_uni.c index bd7eb278b..96b7d7ebf 100644 --- a/src/http/v3/ngx_http_v3_uni.c +++ b/src/http/v3/ngx_http_v3_uni.c @@ -295,8 +295,6 @@ ngx_http_v3_uni_dummy_write_handler(ngx_event_t *wev) } -/* XXX async & buffered stream writes */ - ngx_connection_t * ngx_http_v3_create_push_stream(ngx_connection_t *c, uint64_t push_id) { -- cgit