Skip to main content

QUIC and HTTP/3

The QUIC + HTTP/3 documentation has moved into dedicated stack sections that mirror the real implementation layout:

Why the split

The earlier single-page layout documented an intrinsic-backed version that delegated to quiche / msquic / lsquic. The current implementation is pure Verum end-to-end: frame codec, packet crypto (AEAD + header protection), loss-detection + congestion control (NewReno / CUBIC / BBR), QPACK encoder / decoder, and the TLS 1.3 handshake that drives the key schedule. Each layer has its own byte-exact KAT suite mirrored in vcs/specs/L2-standard/net/.

The high-level facade is still core.net.quic.api.{QuicClient, QuicServer}; the semantics have not changed.

Where the high-level facade lives

See the cookbook recipes quic-client, quic-server, h3-client, and h3-server for runnable client and server examples that use core.net.quic.api + core.net.h3.client + core.net.h3.server directly.

Status (2026-04-25)

LayerL2 testsPassV-theorems
core.net.tls1376100 %V1, V2, V8
core.net.quic128100 %V3, V4, V5, V6, V7, V9
core.net.h324100 %
core.security.x50931100 %V10
RFC 8448 + 9001 KATs6100 %

All ten refinement-typed verification obligations (V1–V10) are discharged by the SMT layer as verify-pass theorems. Build green via cd vcs && make test-l2 against the full suite.