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