kyoto_network/
lib.rs

1/* Listener to accept incoming connections. */
2pub mod listener;
3
4/* Connection handler to deal with network IO. */
5pub mod network_handler;
6
7/* Expose Listener struct. */
8pub type Listener = listener::Listener;
9
10/* Expose NetworkHandler struct. */
11pub type NetworkHandler = network_handler::NetworkHandler;