Skip to content

Commit 908aa38

Browse files
committed
Deprecate std::net::lookup_host
We intended to do this quite a while ago but it snuck through.
1 parent da569fa commit 908aa38

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/libstd/net/addr.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ use fmt;
1212
use hash;
1313
use io;
1414
use mem;
15-
use net::{lookup_host, ntoh, hton, IpAddr, Ipv4Addr, Ipv6Addr};
15+
use net::{ntoh, hton, IpAddr, Ipv4Addr, Ipv6Addr};
16+
#[allow(deprecated)]
17+
use net::lookup_host;
1618
use option;
1719
use sys::net::netc as c;
1820
use sys_common::{FromInner, AsInner, IntoInner};
@@ -845,6 +847,7 @@ impl ToSocketAddrs for (Ipv6Addr, u16) {
845847
}
846848
}
847849

850+
#[allow(deprecated)]
848851
fn resolve_socket_addr(s: &str, p: u16) -> io::Result<vec::IntoIter<SocketAddr>> {
849852
let ips = lookup_host(s)?;
850853
let v: Vec<_> = ips.map(|mut a| { a.set_port(p); a }).collect();

src/libstd/net/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,15 @@ fn each_addr<A: ToSocketAddrs, F, T>(addr: A, mut f: F) -> io::Result<T>
134134
iterator and returning socket \
135135
addresses",
136136
issue = "27705")]
137+
#[rustc_deprecated(since = "1.25", reason = "Use the ToSocketAddrs trait instead")]
137138
pub struct LookupHost(net_imp::LookupHost);
138139

139140
#[unstable(feature = "lookup_host", reason = "unsure about the returned \
140141
iterator and returning socket \
141142
addresses",
142143
issue = "27705")]
144+
#[rustc_deprecated(since = "1.25", reason = "Use the ToSocketAddrs trait instead")]
145+
#[allow(deprecated)]
143146
impl Iterator for LookupHost {
144147
type Item = SocketAddr;
145148
fn next(&mut self) -> Option<SocketAddr> { self.0.next() }
@@ -149,6 +152,8 @@ impl Iterator for LookupHost {
149152
iterator and returning socket \
150153
addresses",
151154
issue = "27705")]
155+
#[rustc_deprecated(since = "1.25", reason = "Use the ToSocketAddrs trait instead")]
156+
#[allow(deprecated)]
152157
impl fmt::Debug for LookupHost {
153158
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
154159
f.pad("LookupHost { .. }")
@@ -181,6 +186,8 @@ impl fmt::Debug for LookupHost {
181186
iterator and returning socket \
182187
addresses",
183188
issue = "27705")]
189+
#[rustc_deprecated(since = "1.25", reason = "Use the ToSocketAddrs trait instead")]
190+
#[allow(deprecated)]
184191
pub fn lookup_host(host: &str) -> io::Result<LookupHost> {
185192
net_imp::lookup_host(host).map(LookupHost)
186193
}

0 commit comments

Comments
 (0)