cubic_protocol_server/
lib.rs

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