quinn icon indicating copy to clipboard operation
quinn copied to clipboard

Async-friendly QUIC implementation in Rust

Results 223 quinn issues
Sort by recently updated
recently updated
newest added

Quinn currently errors out if I try to connect to an IP address, presumably because webpki does not support them. However, my code uses a custom certificate verifier that does...

Presently, all quinn futures are `Unpin`, allowing them to be moved around in memory even after they've been polled. This gives users maximum flexibility, but is rarely needed, though it...

discussion

Currently the server's certificate can only be set once at the creation of the server (AFAIK). This means that certificate rotation is basically impossible for long running servers without restarting...

[Required Operations on Connections](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#required-operations-on-connections): > When implementing the server role, applications need to be able to: > - if Early Data is supported, embed application-controlled data in the TLS resumption...

The current API is pretty confusing because it requires passing in a `Side`, but it's not obvious if that is the API user's side or the message originator's side. My...

good first issue
Hacktoberfest

I am trying to use a QUIC library for measuring the time the connection establishment is taking. I have tried to use Quinn, but it seems to not work for...

See [the draft](https://quicwg.org/base-drafts/draft-ietf-quic-transport.html#preferred-address) for details.

enhancement

QUIC v1 will not include support for multipath traffic, but it is already being discussed. In particular, there's an Internet Draft here: https://datatracker.ietf.org/doc/draft-deconinck-quic-multipath/?include_text=1 This issue will help us keep track...

enhancement
help wanted