]> git.lizzy.rs Git - rust.git/blob - library/std/src/os/net/mod.rs
Rollup merge of #100200 - petrochenkov:zgccld2, r=lqd,Mark-Simulacrum
[rust.git] / library / std / src / os / net / mod.rs
1 //! Linux and Android-specific definitions for socket options.
2
3 #![unstable(feature = "tcp_quickack", issue = "96256")]
4 #![doc(cfg(any(target_os = "linux", target_os = "android",)))]
5 pub mod tcp;
6 #[cfg(test)]
7 mod tests;