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 datagram_protocol;
pub mod server;
pub mod tests;

pub use config::UdpConfig;
pub use datagram_protocol::UdpProtocol;
pub use server::UdpEchoServer;

// Type alias for the generic datagram client with UDP protocol
pub type UdpEchoClient = crate::datagram::DatagramEchoClient<UdpProtocol>;