rabia_engine/network/
mod.rs

1//! Network transport implementations for the Rabia engine
2//!
3//! This module provides networking capabilities as a core component of the Rabia engine.
4//! TCP networking is the default production implementation.
5
6pub mod tcp;
7
8pub use tcp::{BufferConfig, RetryConfig, TcpNetwork, TcpNetworkConfig};