msrt 0.1.3

Portable MSRT protocol implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = "Core protocol primitives for MSRT."]

pub mod ack;
pub mod message;
pub mod packet;

pub use crate::error::{Error, ErrorKind, Result};
pub use ack::{Ack, AckRange, MAX_ACK_RANGES};
pub use message::{ChannelId, MessageFlags, MessageId};
pub use packet::{Flags, Packet, PacketHeader, PacketNumber, PacketPayload, PacketType};