diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
commit | 4547b622d8d29df964fa2914213088b148c498fc (patch) | |
tree | 9fc6b25f3c3add6b745be9a2400a6e96140046e9 /library/std/src/os/net/tcp.rs | |
parent | Releasing progress-linux version 1.66.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-4547b622d8d29df964fa2914213088b148c498fc.tar.xz rustc-4547b622d8d29df964fa2914213088b148c498fc.zip |
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'library/std/src/os/net/tcp.rs')
-rw-r--r-- | library/std/src/os/net/tcp.rs | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/library/std/src/os/net/tcp.rs b/library/std/src/os/net/tcp.rs deleted file mode 100644 index 5e9ee65a4..000000000 --- a/library/std/src/os/net/tcp.rs +++ /dev/null @@ -1,70 +0,0 @@ -//! Linux and Android-specific tcp extensions to primitives in the [`std::net`] module. -//! -//! [`std::net`]: crate::net - -use crate::io; -use crate::net; -use crate::sealed::Sealed; -use crate::sys_common::AsInner; - -/// Os-specific extensions for [`TcpStream`] -/// -/// [`TcpStream`]: net::TcpStream -#[unstable(feature = "tcp_quickack", issue = "96256")] -pub trait TcpStreamExt: Sealed { - /// Enable or disable `TCP_QUICKACK`. - /// - /// This flag causes Linux to eagerly send ACKs rather than delaying them. - /// Linux may reset this flag after further operations on the socket. - /// - /// See [`man 7 tcp`](https://man7.org/linux/man-pages/man7/tcp.7.html) and - /// [TCP delayed acknowledgement](https://en.wikipedia.org/wiki/TCP_delayed_acknowledgment) - /// for more information. - /// - /// # Examples - /// - /// ```no_run - /// #![feature(tcp_quickack)] - /// use std::net::TcpStream; - /// use std::os::linux::net::TcpStreamExt; - /// - /// let stream = TcpStream::connect("127.0.0.1:8080") - /// .expect("Couldn't connect to the server..."); - /// stream.set_quickack(true).expect("set_quickack call failed"); - /// ``` - #[unstable(feature = "tcp_quickack", issue = "96256")] - fn set_quickack(&self, quickack: bool) -> io::Result<()>; - - /// Gets the value of the `TCP_QUICKACK` option on this socket. - /// - /// For more information about this option, see [`TcpStreamExt::set_quickack`]. - /// - /// # Examples - /// - /// ```no_run - /// #![feature(tcp_quickack)] - /// use std::net::TcpStream; - /// use std::os::linux::net::TcpStreamExt; - /// - /// let stream = TcpStream::connect("127.0.0.1:8080") - /// .expect("Couldn't connect to the server..."); - /// stream.set_quickack(true).expect("set_quickack call failed"); - /// assert_eq!(stream.quickack().unwrap_or(false), true); - /// ``` - #[unstable(feature = "tcp_quickack", issue = "96256")] - fn quickack(&self) -> io::Result<bool>; -} - -#[unstable(feature = "tcp_quickack", issue = "96256")] -impl Sealed for net::TcpStream {} - -#[unstable(feature = "tcp_quickack", issue = "96256")] -impl TcpStreamExt for net::TcpStream { - fn set_quickack(&self, quickack: bool) -> io::Result<()> { - self.as_inner().as_inner().set_quickack(quickack) - } - - fn quickack(&self) -> io::Result<bool> { - self.as_inner().as_inner().quickack() - } -} |