From 7e3aa23991cbab236617f15ab3602c1b43b2aae1 Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Wed, 30 Nov 2022 14:09:08 +0400 Subject: QUIC: removed cancelable flag from QUIC and HTTP/3 events. All these events are created in context of a client connection and are deleted when the connection is closed. Setting ev->cancelable could trigger premature connection closure and a socket leak alert. --- src/http/v3/ngx_http_v3.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/http') diff --git a/src/http/v3/ngx_http_v3.c b/src/http/v3/ngx_http_v3.c index b9956e68f..70f397985 100644 --- a/src/http/v3/ngx_http_v3.c +++ b/src/http/v3/ngx_http_v3.c @@ -55,7 +55,6 @@ ngx_http_v3_init_session(ngx_connection_t *c) h3c->keepalive.log = pc->log; h3c->keepalive.data = pc; h3c->keepalive.handler = ngx_http_v3_keepalive_handler; - h3c->keepalive.cancelable = 1; h3c->table.send_insert_count.log = pc->log; h3c->table.send_insert_count.data = pc; -- cgit