fastnet 0.3.1

Ultra-low latency encrypted networking for real-time games. TLS 1.3 + ChaCha20-Poly1305 with ~15µs RTT.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common types used across FastNet modules.

use uuid::Uuid;

/// Unique identifier for a peer connection.
pub type PeerId = Uuid;

/// Unique identifier for a transfer operation.
pub type TransferId = Uuid;

/// Unique identifier for a session.
pub type SessionId = Uuid;