//! Server-side TCP echo flow through the facade: bind, accept, recv, send.
//!
//! Single-threaded by design -- no peer thread (`std::thread::spawn` is banned).
//! The flow compiles and type-checks without a live client; running it would
//! block on accept until a connection arrives. Gated on the `net` feature.
use ;