1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

SOCKETS: Suppress expected read error message on close of a blocking socket.

This commit is contained in:
Mark Pizzolato
2015-02-15 12:06:53 -08:00
parent 8789172e4a
commit e69c3adf5f

View File

@@ -1232,7 +1232,8 @@ if (rbytes == SOCKET_ERROR) {
(err != WSAEHOSTUNREACH) &&
(err != WSAECONNREFUSED) &&
(err != WSAECONNABORTED) &&
(err != WSAECONNRESET))
(err != WSAECONNRESET) &&
(err != WSAEINTR)) /* or a close of a blocking read */
sim_err_sock (INVALID_SOCKET, "read");
return -1;
}