simple-socket 0.1.7

The basic socket server & client for testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod backlog;
mod client;
#[cfg(feature = "server")]
mod server;

#[cfg(feature = "actor")]
pub mod actor;

pub use self::client::SocketClient;
#[cfg(feature = "server")]
pub use self::server::{PostServing, SocketServer};