Ruben2424
Ruben2424
h3spec
Hi, i solved #110. Some tests are failing. I will see if i can fix those.
Hi, i have documented the duvet usage. I hope that all i wrote is correct.
Would it make sense to set up duvet also for [qpack](https://www.rfc-editor.org/rfc/rfc9204.html)? And maybe even for WebTransport #71? [WebTransport](https://datatracker.ietf.org/doc/draft-ietf-webtrans-http3/) [HTTP Datagrams](https://datatracker.ietf.org/doc/html/rfc9297)
I split the big files `server.rs` and `client.rs` into multiple files and introduced the `server` and `client` modules to gain a clearer project structure. Also fixed some (clippy) warnings.
This is a not 100% working change to explore some of the proposed changes from #177.
The goal of This PR is to separate the [h3-datagram](https://datatracker.ietf.org/doc/html/rfc9297) logic from the `h3` crate providing a new crate `h3-datagram`.
This adds compliance checks with duvet for qpack. closes #129
Hi, i experimented a bit with quinn 0.9 from #145 and GATs in the Quic `Connection` trait. I changed the trait and implemented it for quinn. And i refactored the...
This PR implements parts of the proposed changes from #177. Most of the code is from #200. This replaces `poll_accept_recv` and `poll_accept_bidi` with one `poll_incoming` method to accept unidirectional and...