quinn-rs / quinn

Async-friendly QUIC implementation in Rust
Apache License 2.0
3.84k stars 394 forks source link

Does it support webtransport #1549

Closed redoriental closed 1 year ago

djc commented 1 year ago

Quinn only provides a QUIC protocol implementation. As far as I know, WebTransport layers on top of HTTP/3, which in turn layers on top of QUIC. The hyper project is in the process of building a h3 crate with a h3-quinn adapter that supports running HTTP/3 over Quinn. Quinn does not provide support for HTTP/3 or WebTransport directly.

Ralith commented 1 year ago

WebTransport support is being actively developed within the h3 crate. See https://github.com/hyperium/h3/issues/71, https://github.com/hyperium/h3/pull/183.

darioalessandro commented 1 year ago

Yes!! @ten3roberts and I are working on it!