summaryrefslogtreecommitdiffstats
path: root/library/std/src/os/net/linux_ext/mod.rs
blob: 62e78cc50d4ab374b75ce03ec695965cbcec6219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 = "tcp_quickack", issue = "96256")]
pub(crate) mod tcp;

#[cfg(test)]
mod tests;