qbase 0.6.3

Core structure of the QUIC protocol, a part of dquic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Classification and wire codecs for UDP datagrams carried by dquic.

pub mod error;
pub mod forward;
pub mod io;
pub mod stun;
pub mod r#type;

pub use error::Error;
pub use io::{Datagram, WriteDatagram, be_datagram};
pub use stun::{
    Attribute, BindingRequest, BindingResponse, MessageType as StunMessageType, TransactionId,
};
pub use r#type::{GetDatagramType, Type, WriteDatagramType, be_datagram_type};