about summary refs log tree commit diff
path: root/library/std/src/net/mod.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/net/mod.rs
parent75b7e52e92c3b00fc891b47f5b2efdff0a2be55a (diff)
downloadrust-786e8755e7f8142c90a82351a11ad51acf5e1460.tar.gz
rust-786e8755e7f8142c90a82351a11ad51acf5e1460.zip
created tcpstream quickack trait
for linux and android
Diffstat (limited to 'library/std/src/net/mod.rs')
-rw-r--r--library/std/src/net/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/net/mod.rs b/library/std/src/net/mod.rs
index e7a40bdaf8e..6f9743f3a0e 100644
--- a/library/std/src/net/mod.rs
+++ b/library/std/src/net/mod.rs
@@ -41,7 +41,7 @@ mod ip;
 mod parser;
 mod tcp;
 #[cfg(test)]
-mod test;
+pub(crate) mod test;
 mod udp;
 
 /// Possible values which can be passed to the [`TcpStream::shutdown`] method.