samurai 0.1.5

Very early stage user-space P2P network protocol.
Documentation
/// Data structures shared by other modules
pub mod bucket;

/// Server that listens for packets
pub mod server;

/// Functions used to send messages to other peers
pub mod client;

/// Functions used to get into the network when restarted
pub mod bootstrap;

/// Id of a node in the network
pub mod id;

/// Structure representing a node in the network
pub mod node;

/// Packet structure of the protocol
pub mod packet;

/// Custom samurai errors
pub mod error;

/// Connection with debug server
pub mod debug;

/// Config parser
pub mod config;