Skip to content

Commit c8cc821

Browse files
committed
Flatten net module again.
1 parent 876f1cc commit c8cc821

File tree

9 files changed

+7
-9
lines changed

9 files changed

+7
-9
lines changed

library/std/src/net/addr/mod.rs

-5
This file was deleted.
File renamed without changes.
File renamed without changes.

library/std/src/net/mod.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,22 @@
2424
use crate::io::{self, ErrorKind};
2525

2626
#[stable(feature = "rust1", since = "1.0.0")]
27-
pub use self::addr::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
27+
pub use self::ip_addr::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
2828
#[stable(feature = "rust1", since = "1.0.0")]
29-
pub use self::addr::parser::AddrParseError;
29+
pub use self::parser::AddrParseError;
3030
#[stable(feature = "rust1", since = "1.0.0")]
31-
pub use self::addr::socket::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
31+
pub use self::socket_addr::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
3232
#[unstable(feature = "tcplistener_into_incoming", issue = "88339")]
3333
pub use self::tcp::IntoIncoming;
3434
#[stable(feature = "rust1", since = "1.0.0")]
3535
pub use self::tcp::{Incoming, TcpListener, TcpStream};
3636
#[stable(feature = "rust1", since = "1.0.0")]
3737
pub use self::udp::UdpSocket;
3838

39-
mod addr;
39+
mod display_buffer;
40+
mod ip_addr;
41+
mod parser;
42+
mod socket_addr;
4043
mod tcp;
4144
#[cfg(test)]
4245
pub(crate) mod test;
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)