echosrv 0.3.0

A high-performance set of async echo server library built with Tokio for testing and development environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod config;
pub mod server;
pub mod stream_protocol;
pub mod tests;

pub use config::TcpConfig;
pub use server::TcpEchoServer;
pub use stream_protocol::TcpProtocol;

// Type alias for the generic stream client with TCP protocol
pub type TcpEchoClient = crate::stream::Client<TcpProtocol>;