]> git.lizzy.rs Git - rust.git/commitdiff
std: Reexport std::net::tcp::Incoming
authorAlex Crichton <alex@alexcrichton.com>
Sun, 17 May 2015 05:24:13 +0000 (22:24 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 17 May 2015 05:24:13 +0000 (22:24 -0700)
This iterator was mistakenly not reexported at the top level, preventing
actually naming the type!

Closes #25519

src/libstd/net/mod.rs

index bff9774bcd04a978b91608b1e2ddaff367da3852..a79a451305dafb6893e8aa56536ceb59858620ef 100644 (file)
@@ -19,7 +19,7 @@
 
 pub use self::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
 pub use self::addr::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
-pub use self::tcp::{TcpStream, TcpListener};
+pub use self::tcp::{TcpStream, TcpListener, Incoming};
 pub use self::udp::UdpSocket;
 pub use self::parser::AddrParseError;