about summary refs log tree commit diff
path: root/library/std/src/os/net/mod.rs
AgeCommit message (Collapse)AuthorLines
2025-09-06Add socket extensions for cygwinBerrysoft-1/+1
2023-01-09Disable `linux_ext` in wasm32 and fortanix rustdoc builds.John Millikin-0/+9
The `std::os::unix` module is stubbed out when building docs for these target platforms. The introduction of Linux-specific extension traits caused `std::os::net` to depend on sub-modules of `std::os::unix`, which broke rustdoc for the `wasm32-unknown-unknown` target. Adding an additional `#[cfg]` guard solves that rustdoc failure by not declaring `linux_ext` on targets with a stubbed `std::os::unix`.
2022-09-18Adjust `tcp_quickack` feature to allow other `os::linux::net` features.John Millikin-6/+3
2022-08-13created tcpstream quickack traitBerend-Jan Lange-0/+7
for linux and android