Expand description
Helper to wrap existing quiche::Connections.
This is a low-level interface for users who either need to heavily customize
the quiche::Connection
beyond what is possible via the crate’s
settings
, or need more control over how to pass data
into the connection.
Most use cases are much better served by our
connect
(for clients) or listen
(for servers) API.
Structs§
- Conn
Close Receiver - Pollable receiver for
connection closed
notifications from a QUIC connection. - Conn
Wrapper Result - Result of manually wrapping a
quiche::Connection
in anInitialQuicConnection
.
Functions§
- wrap_
quiche_ conn - Wraps an existing
quiche::Connection
in anInitialQuicConnection
, bypassing the regular packet router workflow.