1//! Linux and Android-specific networking functionality.
2
3#![doc(cfg(any(target_os = "linux", target_os = "android")))]
4
5#[stable(feature = "unix_socket_abstract", since = "1.70.0")]
6pub(crate) mod addr;
7
8#[unstable(feature = "unix_socket_ancillary_data", issue = "76915")]
9pub(crate) mod socket;
10
11#[unstable(feature = "tcp_quickack", issue = "96256")]
12pub(crate) mod tcp;
13
14#[cfg(test)]
15mod tests;
16