rust/library/std/src/os/linux
Matthias Krüger d9563a5aa4
Rollup merge of #129121 - devnexen:stabilize_ext_linux_tcp_layer, r=tgross35
Stabilize `tcp_quickack`

to stabilise the quickack part for now, tcp_deferaccept had been added at a later stage.

The related API calls are the following

```rust
// std::os::linux::net

// sealed trait, implemented for std::net::TcpStream
pub trait TcpStreamExt: Sealed{
  fn quickack(&self) -> io::Result<bool>;
  fn set_quickack(&self, quickack: bool) -> io::Result<()>;
}
```

Closes: https://github.com/rust-lang/rust/issues/96256
2025-06-09 13:55:32 +02:00
..
fs.rs Reformat use declarations. 2024-07-29 08:26:52 +10:00
mod.rs created tcpstream quickack trait 2022-08-13 17:38:01 +02:00
net.rs proposal to expand (a subset of) linux specific socket capabilities. 2024-08-15 13:40:55 +01:00
process.rs to extract a pidfd we must consume the child 2024-06-22 00:46:55 +02:00
raw.rs Add new Tier-3 targets: loongarch32-unknown-none* 2025-06-06 08:19:38 +08:00