mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
13 lines
374 B
Rust
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;
|