quic-proto 0.11.16

State machine for the QUIC transport protocol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# quic-proto


`quic-proto` is the low-level QUIC state machine used by
[`quic`](https://docs.rs/quic). It contains no socket or async runtime code.

Most applications should use the high-level `quic` crate. Use `quic-proto`
directly when integrating QUIC with a custom event loop or building an FFI
layer. The main entry points are `Endpoint`, which routes datagrams, and
`Connection`, which holds the state for one QUIC connection.

API documentation is available on [docs.rs](https://docs.rs/quic-proto).

## License


Licensed under the [Apache License 2.0](LICENSE).