tox 0.0.5

Implementation of toxcore in pure Rust - P2P, distributed, encrypted, easy to use DHT-based network.
Documentation
1
2
3
4
5
6
7
8
9
10
/*! The implementaion of tcp relay client
*/

mod connection;
mod processor;

pub use self::connection::Connection;
pub use self::connection::IncomingPacket;
pub use self::connection::OutgoingPacket;
pub use self::processor::ClientProcessor;