X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=library%2Fstd%2Fsrc%2Fos%2Fnet%2Fmod.rs;h=5ec267c41e97ca77a5e3a920b30c918633e2fd77;hb=1a6ed3050ff0ba96d0fa4e91fd657fe983623330;hp=d6d84d24ec489de0db4c154f822fa47c5ebf763d;hpb=93177758fccdaac08d606348f79b20e9cd9df022;p=rust.git diff --git a/library/std/src/os/net/mod.rs b/library/std/src/os/net/mod.rs index d6d84d24ec4..5ec267c41e9 100644 --- a/library/std/src/os/net/mod.rs +++ b/library/std/src/os/net/mod.rs @@ -1,7 +1,4 @@ -//! Linux and Android-specific definitions for socket options. +//! OS-specific networking functionality. -#![unstable(feature = "tcp_quickack", issue = "96256")] -#![doc(cfg(any(target_os = "linux", target_os = "android",)))] -pub mod tcp; -#[cfg(test)] -mod tests; +#[cfg(any(target_os = "linux", target_os = "android", doc))] +pub(super) mod linux_ext;