Skip to content

Commit c52b957

Browse files
committed
When getaddrinfo returns EAI_SYSTEM retrieve actual error from errno.
Fixes issue #36546. This change also updates libc to earliest version that includes EAI_SYSTEM constant.
1 parent 3bf4a7a commit c52b957

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/libstd/sys/unix/net.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
use ffi::CStr;
1212
use io;
13-
use libc::{self, c_int, size_t, sockaddr, socklen_t};
13+
use libc::{self, c_int, size_t, sockaddr, socklen_t, EAI_SYSTEM};
1414
use net::{SocketAddr, Shutdown};
1515
use str;
1616
use sys::fd::FileDesc;
@@ -38,7 +38,12 @@ pub struct Socket(FileDesc);
3838
pub fn init() {}
3939

4040
pub fn cvt_gai(err: c_int) -> io::Result<()> {
41-
if err == 0 { return Ok(()) }
41+
if err == 0 {
42+
return Ok(())
43+
}
44+
if err == EAI_SYSTEM {
45+
return Err(io::Error::last_os_error())
46+
}
4247

4348
let detail = unsafe {
4449
str::from_utf8(CStr::from_ptr(libc::gai_strerror(err)).to_bytes()).unwrap()

0 commit comments

Comments
 (0)