Host correctly interacts with Web

This commit is contained in:
Alex Emmet 2026-06-25 13:50:41 +02:00
commit 3fb51b7723

View file

@ -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) => { Ok(conn) => {
log::warn!("[transport bg task] connection accepted"); log::warn!("[transport bg task] connection accepted");
conn conn