From: Sergey Kandaurov Date: Tue, 24 Mar 2020 16:17:57 +0000 (+0300) Subject: QUIC streams don't need filter_need_in_memory after 7f0981be07c4. X-Git-Tag: release-1.25.0~4^2~833 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=d8d42e29e7ff43025ba0f56262993cd37c4a5b10;p=nginx.git QUIC streams don't need filter_need_in_memory after 7f0981be07c4. Now they inherit c->ssl always enabled from the main connection, which makes r->main_filter_need_in_memory set for them. --- diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index 890e5374b..c5165f2dc 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -709,7 +709,6 @@ ngx_http_alloc_request(ngx_connection_t *c) #if (NGX_HTTP_V3) if (hc->quic) { r->http_version = NGX_HTTP_VERSION_30; - r->filter_need_in_memory = 1; } #endif