1 2 3 4 5 6 7 8
//! Networking layer — TCP server, mDNS discovery, PTP timing, feature flags. #[cfg(feature = "ap2")] pub mod features; pub mod mdns; #[cfg(feature = "ap2")] pub mod ptp; pub mod server;