about summary refs log tree commit diff
path: root/library/std/src/os/linux/net.rs
diff options
context:
space:
mode:
authorBerend-Jan Lange <berendjanlange@Berend-Jans-MBP.home>2022-04-22 21:39:09 +0200
committerberendjan <45036733+berendjan@users.noreply.github.com>2022-08-13 17:38:01 +0200
commit786e8755e7f8142c90a82351a11ad51acf5e1460 (patch)
tree5077c576fad816bcf728f818fe7fff4ed8b18449 /library/std/src/os/linux/net.rs
parent75b7e52e92c3b00fc891b47f5b2efdff0a2be55a (diff)
downloadrust-786e8755e7f8142c90a82351a11ad51acf5e1460.tar.gz
rust-786e8755e7f8142c90a82351a11ad51acf5e1460.zip
created tcpstream quickack trait
for linux and android
Diffstat (limited to 'library/std/src/os/linux/net.rs')
-rw-r--r--library/std/src/os/linux/net.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/os/linux/net.rs b/library/std/src/os/linux/net.rs
new file mode 100644
index 00000000000..ff96125c37b
--- /dev/null
+++ b/library/std/src/os/linux/net.rs
@@ -0,0 +1,4 @@
+//! Linux and Android-specific definitions for socket options.
+
+#![unstable(feature = "tcp_quickack", issue = "96256")]
+pub use crate::os::net::tcp::TcpStreamExt;