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
//! TCP transport implementation for VSTP
//!
//! This module provides async TCP client and server implementations using the VSTP frame codec.

pub mod client;
pub mod server;

pub use client::VstpTcpClient;
pub use server::VstpTcpServer;