laminar 0.5.0

A simple semi-reliable UDP protocol for multiplayer games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module provides the logic around the processing of the packet.
//! Like ordering, sequencing, controlling congestion, fragmentation, and packet acknowledgment.

pub use self::acknowledgment::AcknowledgmentHandler;
pub use self::acknowledgment::SentPacket;
pub use self::congestion::CongestionHandler;
pub use self::fragmenter::Fragmentation;

mod acknowledgment;
mod congestion;
mod fragmenter;

pub mod arranging;