silkrust 0.0.3

a non-invasive SR module library to build network modules for the Silkroad Online Network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// TODO: document what a message exactly is, what it consists of and general caveats
pub mod message;


pub use self::message_buffer::MessageBuffer;
mod message_buffer;

pub use self::net_connection::NetConnection;
mod net_connection;

pub use self::net_client::{MessageTable, Processor, NetClient, Process};
mod net_client;

mod massive;

pub mod io;
pub mod net_engine;