mirror of
https://github.com/simh/simh.git
synced 2026-01-26 04:01:38 +00:00
SOCKETS: Suppress expected read error message on close of a blocking socket.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user