From cfd7bbebeb6b71fdf955b40fb46782c2843f0dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Wed, 17 Dec 2025 10:53:16 +0100 Subject: [PATCH] fix(proto): Send the close frame on the available path --- quinn-proto/src/connection/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quinn-proto/src/connection/mod.rs b/quinn-proto/src/connection/mod.rs index 3247c134c..9f8e95e01 100644 --- a/quinn-proto/src/connection/mod.rs +++ b/quinn-proto/src/connection/mod.rs @@ -1081,7 +1081,7 @@ impl Connection { !can_send.is_empty() }; let needs_loss_probe = self.spaces[space_id].for_path(path_id).loss_probes > 0; - path_should_send || needs_loss_probe || can_send.close + path_should_send || needs_loss_probe }; if !path_should_send && space_id < SpaceId::Data {