From 3fb51b7723347c3e9e2554f6a129507f9138a929 Mon Sep 17 00:00:00 2001 From: Alex Emmet <111742636+Alex-Emmet@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:50:41 +0200 Subject: [PATCH] Host correctly interacts with Web --- transport/src/host.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/transport/src/host.rs b/transport/src/host.rs index 2274344..880d37e 100644 --- a/transport/src/host.rs +++ b/transport/src/host.rs @@ -67,7 +67,10 @@ pub async fn host( } }; - let connection = match request.accept().await { + let connection = match request + .accept_with_headers([("sec-webtransport-http3-draft02", "1")]) + .await + { Ok(conn) => { log::warn!("[transport bg task] connection accepted"); conn