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
14
15
16
//! This module provides the logic between the low-level abstract types and the types that the user will be interacting with.
//! You can think of the socket, connection management, congestion control.

mod connection;
mod events;
mod link_conditioner;
mod quality;
mod socket;
mod virtual_connection;

pub mod constants;

pub use self::events::SocketEvent;
pub use self::quality::{NetworkQuality, RttMeasurer};
pub use self::socket::Socket;
pub use self::virtual_connection::VirtualConnection;