udx 0.2.0

Rust port of libudx, a protocol for reliable, multiplex, and congestion controlled streams over udp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod constants;
mod error;
mod mutex;
mod packet;
mod socket;
mod stream;
pub use constants::UDX_DATA_MTU;
pub use error::*;
pub use socket::*;
pub use stream::*;

mod udp {
    pub use udx_udp::*;
}