use crate::*;
/// Represents the inner, mutable server configuration.
///
/// This structure holds all the settings for the TCP server,
/// including network parameters and buffer sizes.
pub
/// Represents the thread-safe, shareable server configuration.
///
/// This structure wraps `ServerConfigData` in an `Arc<RwLock<ServerConfigData>>`
/// to allow for safe concurrent access and modification of the server settings.
);