quiche 0.28.0

πŸ₯§ Savoury implementation of the QUIC transport protocol and HTTP/3
Documentation
# quiche/src/h3/ β€” HTTP/3 Module

## OVERVIEW

HTTP/3 wire protocol over QUIC. `Connection` manages H3 state (streams, QPACK, SETTINGS, GOAWAY) on top of `quiche::Connection<F>`. Event-driven: caller loops `poll()` β†’ `Event`. Own `Error`/`Result` types, separate from `quiche::Error`.

## STRUCTURE

```
mod.rs       (7549 lines)  H3 Connection, Config, Error, Event, Header, NameValue, Priority
stream.rs    (1565)        H3 stream state machine (Type, State enums; frame parsing FSM)
frame.rs     (1337)        H3 frame encode/decode (Frame enum, settings constants)
ffi.rs                     C FFI for H3 β€” behind `ffi` feature
qpack/
  mod.rs                   Re-exports
  encoder.rs               QPACK encoder
  decoder.rs               QPACK decoder
  static_table.rs          Static header table (RFC 9204)
```

## WHERE TO LOOK

| Task | Location |
|------|----------|
| Send/recv requests+responses | `mod.rs` β€” `send_request()`, `send_response()`, `poll()` |
| Body data | `mod.rs` β€” `send_body()`, `recv_body()` |
| Priority handling | `mod.rs` β€” `Priority` struct, `send_priority_update_for_request()` |
| H3 stream lifecycle | `stream.rs` β€” `Stream` struct, `State` FSM |
| Frame wire format | `frame.rs` β€” `Frame` enum, `encode()`/`decode()` |
| QPACK header compression | `qpack/encoder.rs`, `qpack/decoder.rs` |
| H3 C API | `ffi.rs` |

## ANTI-PATTERNS

- **h3::Error != quiche::Error.** 19 variants; `TransportError(quiche::Error)` wraps transport errors. Don't confuse.
- **`Error::Done` is success** in poll/read loops. Not a failure β€” signals "no more work".
- **`to_wire()` maps `BufferTooShort` β†’ `0x999`** β€” non-standard wire code. Don't propagate this pattern.
- **`to_c()` skips -12** β€” was previously `TransportError`. Gap is intentional for ABI stability.
- **`to_c()` for `TransportError`:** offsets by `-1000` from underlying `quic_error.to_c()`.
- **`send_request()` sends empty `b""` to create QUIC stream** before writing headers. Required because QUIC stream doesn't exist until first write.
- **stream.rs `Stream` β‰  quiche::stream::Stream.** H3 stream is a frame-parsing state machine layered on top.

## NOTES

- Methods are generic over `F: BufFactory` (zero-copy) and `T: NameValue` (header access).
- `NameValue` trait: `name() -> &[u8]`, `value() -> &[u8]`. Blanket impl for `(N, V)` tuples.
- `Header` is `(Vec<u8>, Vec<u8>)` newtype implementing `NameValue`.
- `Event` variants: `Headers`, `Data`, `Finished`, `Reset(u64)`, `PriorityUpdate`, `GoAway`.
- Priority: RFC 9218 Extensible Priorities. `sfv` feature enables `TryFrom` parsing.
- `PRIORITY_URGENCY_OFFSET = 124` maps external urgency 0-7 to internal quiche priority.
- `APPLICATION_PROTOCOL = &[b"h3"]` β€” ALPN constant.
- `From<quiche::Error>` converts `Done→Done`, everything else → `TransportError(e)`.
- `From<octets::BufferTooShortError>` β†’ `Error::BufferTooShort`.
- All `#[cfg(feature = "qlog")]` instrumentation inline in mod.rs β€” heavy conditional compilation.