vstp 0.2.1

VSTP - Vishu's Secure Transfer Protocol: A fast, secure, and extensible binary protocol for TCP and UDP
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! UDP transport implementation for VSTP
//!
//! This module provides async UDP client and server implementations with
//! fragmentation, CRC validation, and optional ACK reliability.

pub mod client;
pub mod server;
pub mod reassembly;

pub use client::VstpUdpClient;
pub use server::VstpUdpServer;