Files
unshell/ush-payload/src/tcp/mod.rs
T
2026-02-16 12:52:46 -07:00

13 lines
374 B
Rust

//! TCP networking components for tree-based communication.
//!
//! This module provides TCP client and server components that can be
//! added to endpoints for network communication.
pub mod client;
pub mod config;
pub mod server;
pub use client::TcpClient;
pub use config::{ConnectionStatus, ListenerStatus, TcpClientConfig, TcpServerConfig};
pub use server::TcpServer;