1 2 3 4 5 6 7 8 9 10 11
// Platform-specific socket address encoding/decoding and raw syscall wrappers. #[cfg(unix)] mod unix; #[cfg(unix)] pub(crate) use unix::*; #[cfg(windows)] mod windows_impl; #[cfg(windows)] pub(crate) use windows_impl::*;