std: Reexport std::net::tcp::Incoming

This iterator was mistakenly not reexported at the top level, preventing
actually naming the type!

Closes #25519
This commit is contained in:
Alex Crichton 2015-05-16 22:24:13 -07:00
parent 5e535eae5c
commit e5e722bd32

View File

@ -19,7 +19,7 @@ use sys_common::net as net_imp;
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;