use ListenerExt;
use SocketAddr;
use TcpListener;
/// Creates an optimized TCP listener with TCP_NODELAY enabled
///
/// TCP_NODELAY disables Nagle's algorithm, reducing latency for small packets
/// This is beneficial for web applications with frequent small responses
pub async