]> git.lizzy.rs Git - rust.git/blob - library/std/src/os/net/mod.rs
Rollup merge of #99880 - compiler-errors:escape-ascii-is-not-exact-size-iterator...
[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;