rsub 0.1.0

A high-performance message broker with QUIC transport and pub/sub messaging patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod auth;
pub mod frame;
pub mod message;
pub mod stream;
pub mod tls;

pub const ALPN_QUIC_HTTP: &[&[u8]] = &[b"hq-29"];
pub const HEADER_LENGTH: usize = 3;
pub enum StreamTypeHeader {
    StreamTypeBinary = 0,
    StreamTypePacket = 1,
}