Skip to content

Commit a0815c8

Browse files
committed
Rollup merge of rust-lang#25522 - alexcrichton:reexport-incoming, r=sfackler
This iterator was mistakenly not reexported at the top level, preventing actually naming the type! Closes rust-lang#25519
2 parents 99ed2c9 + e5e722b commit a0815c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/net/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use sys_common::net as net_imp;
1919

2020
pub use self::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
2121
pub use self::addr::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
22-
pub use self::tcp::{TcpStream, TcpListener};
22+
pub use self::tcp::{TcpStream, TcpListener, Incoming};
2323
pub use self::udp::UdpSocket;
2424
pub use self::parser::AddrParseError;
2525

0 commit comments

Comments
 (0)