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
12
13
14
//! Datagram-based echo server and client functionality
//!
//! This module provides generic datagram-based echo servers and clients
//! that can work with any datagram protocol (UDP, Unix datagrams, etc.).

pub mod client;
pub mod config;
pub mod protocol;
pub mod server;

pub use client::DatagramEchoClient;
pub use config::DatagramConfig;
pub use protocol::DatagramProtocol;
pub use server::DatagramEchoServer;