Rollup merge of #25522 - alexcrichton:reexport-incoming, r=sfackler

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

Closes #25519
This commit is contained in:
Manish Goregaokar 2015-05-17 11:55:40 +05:30
commit a0815c8c74

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;