We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6768ca9 commit bb620b1Copy full SHA for bb620b1
src/libstd/sys/windows/mod.rs
@@ -60,6 +60,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
60
libc::WSAEINVAL => ErrorKind::InvalidInput,
61
libc::WSAENOTCONN => ErrorKind::NotConnected,
62
libc::WSAEWOULDBLOCK => ErrorKind::WouldBlock,
63
+ libc::WSAETIMEDOUT => ErrorKind::TimedOut,
64
65
_ => ErrorKind::Other,
66
}
0 commit comments