1
Fork 0

created tcpstream quickack trait

for linux and android
This commit is contained in:
Berend-Jan Lange 2022-04-22 21:39:09 +02:00 committed by berendjan
parent 75b7e52e92
commit 786e8755e7
11 changed files with 138 additions and 2 deletions

View file

@ -4,5 +4,6 @@
#![doc(cfg(target_os = "linux"))]
pub mod fs;
pub mod net;
pub mod process;
pub mod raw;

View file

@ -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;