zrquic 0.1.6

A low-level quic library based on `quiche` focusing on non-blocking and masive connection management.
Documentation
1
2
3
4
5
6
//! Tiny and fixed length buffer for protocol parsing.

use fixedbuf::ArrayBuf;

/// Fixed-length buffer for quic protocol.
pub type QuicBuf = ArrayBuf<1600>;