laminar 0.2.3

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.

mod acknowledgment;
mod congestion;
mod fragmenter;

pub mod arranging;

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