Quinn

Futures-based QUIC implementation in Rust

Github stars Tracking Chart

Quinn

Documentation
Crates.io
Build status
codecov
Chat
License: MIT
License: Apache 2.0

Quinn is an implementation of the QUIC transport protocol undergoing
standardization by the IETF. It is suitable for experimental use. This repository
contains the following crates:

  • quinn contains a high-level async API based on tokio, see
    quinn/examples/ for
    usage. This will be used by most Rust developers. (Basic benchmarks are included.)
  • quinn-proto contains a deterministic state machine of the protocol which performs
    no I/O internally and is suitable for use with custom event loops (and potentially
    a C or C++ API).
  • quinn-h3 contains an implementation of HTTP 3 and QPACK. It is split internally
    in a deterministatic state machine and a tokio-based high-level async API.
  • bench contains some extra benchmarks without any framework.
  • interop contains tooling that helps the Quinn team run interoperability tests.

Quinn is the subject of a RustFest Paris (May 2018) presentation; you can
also get the slides (and the animation about head-of-line
blocking). Video of the talk is available on YouTube. Since this
presentation, Quinn has been merged with quicr, another Rust implementation.

All feedback welcome. Feel free to file bugs, requests for documentation and
any other feedback to the issue tracker.

Quinn was created and is maintained by Dirkjan Ochtman and Benjamin Saunders.

Features

  • Simultaneous client/server operation
  • Ordered and unordered reads for improved performance
  • Works on stable Rust, tested on Linux, macOS and Windows
  • Pluggable cryptography, with a standard implementation backed by
    rustls and ring

Status

  • QUIC draft 24 with TLS 1.3
  • Cryptographic handshake
  • Stream data w/ flow control and congestion control
  • Connection close
  • Stateless retry
  • Explicit congestion notification
  • Migration
  • 0-RTT data
  • Session resumption
  • HTTP over QUIC

Usage Notes

Buffers

A Quinn endpoint corresponds to a single UDP socket, no matter how many
connections are in use. Handling high aggregate data rates on a single endpoint
can require a larger UDP buffer than is configured by default in most
environments. If you observe erratic latency and/or throughput over a stable
network link, consider increasing the buffer sizes used. For example, you could
adjust the SO_SNDBUF and SO_RCVBUF options of the UDP socket to be used
before passing it in to Quinn. Note that some platforms (e.g. Linux) require
elevated privileges or modified system configuration for a process to increase
its UDP buffer sizes.

Certificates

By default, Quinn clients validate the cryptographic identity of servers they
connect to. This prevents an active, on-path attacker from intercepting
messages, but requires trusting some certificate authority. For many purposes,
this can be accomplished by using certificates from Let's Encrypt
for servers, and relying on the default configuration for clients.

For some cases, including peer-to-peer, trust-on-first-use, deliberately
insecure applications, or any case where servers are not identified by domain
name, this isn't practical. Arbitrary certificate validation logic can be
implemented by enabling the dangerous_configuration feature of rustls and
constructing a Quinn ClientConfig with an overridden certificate verifier by
hand.

When operating your own certificate authority doesn't make sense, rcgen
can be used to generate self-signed certificates on demand. To support
trust-on-first-use, servers that automatically generate self-signed certificates
should write their generated certificate to persistent storage and reuse it on
future runs.

Running the Examples

$ cargo run --example server ./
$ cargo run --example client https://localhost:4433/Cargo.toml

This launches a HTTP 0.9 server on the loopback address serving the current
working directory, with the client fetching ./Cargo.toml. By default, the
server generates a self-signed certificate and stores it to disk, where the
client will automatically find and trust it.

Development

The quinn-proto test suite uses simulated IO for reproducibility and to avoid
long sleeps in certain timing-sensitive tests. If the SSLKEYLOGFILE
environment variable is set, the tests will emit UDP packets for inspection
using external protocol analyzers like Wireshark, and NSS-compatible key logs
for the client side of each connection will be written to the path specified in
the variable.

Main metrics

Overview
Name With Ownerquinn-rs/quinn
Primary LanguageRust
Program languageRust (Language Count: 1)
Platform
License:Apache License 2.0
所有者活动
Created At2018-04-03 07:47:41
Pushed At2025-04-22 08:17:33
Last Commit At
Release Count61
Last Release Namequinn-udp-0.5.11 (Posted on 2025-03-25 10:18:37)
First Release Namepre-quicr-quinn (Posted on 2018-10-03 11:33:17)
用户参与
Stargazers Count4.2k
Watchers Count62
Fork Count431
Commits Count3.9k
Has Issues Enabled
Issues Count690
Issue Open Count112
Pull Requests Count1280
Pull Requests Open Count19
Pull Requests Close Count222
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private