blob: 318ebacfd7a08d774d6e2a01f86807df45fde3de [file] [log] [blame]
//! Linux and Android-specific networking functionality.
#![doc(cfg(any(target_os = "linux", target_os = "android")))]
#[unstable(feature = "unix_socket_abstract", issue = "85410")]
pub(crate) mod addr;
#[unstable(feature = "tcp_quickack", issue = "96256")]
pub(crate) mod tcp;
#[cfg(test)]
mod tests;