1
2
3
4
5
6
7
8
9
10
11
12
/// # Protocol server
/// There exists 4 entities:
/// - Server (Receiving and creating tasks for connections)
/// - Connection (Handling connection closing, packet reading, packet writing)
/// - Packet handler (Handles packets)
/// - Connection handle (Handles connections)

pub mod server;
pub mod write;
pub mod read;
pub mod connection;
pub mod handler;