Skip to content

Commit

Permalink
std: Reexport std::net::tcp::Incoming
Browse files Browse the repository at this point in the history
This iterator was mistakenly not reexported at the top level, preventing
actually naming the type!

Closes #25519
  • Loading branch information
alexcrichton committed May 17, 2015
1 parent 5e535ea commit e5e722b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/net/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit e5e722b

Please sign in to comment.