Commit 0a498428 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

server: Map EHOSTUNREACH to STATUS_HOST_UNREACHABLE.

parent e8ac9bbd
......@@ -817,6 +817,7 @@ static int sock_get_ntstatus( int err )
case ENOTCONN: return STATUS_CONNECTION_DISCONNECTED;
case ETIMEDOUT: return STATUS_IO_TIMEOUT;
case ENETUNREACH: return STATUS_NETWORK_UNREACHABLE;
case EHOSTUNREACH: return STATUS_HOST_UNREACHABLE;
case ENETDOWN: return STATUS_NETWORK_BUSY;
case EPIPE:
case ECONNRESET: return STATUS_CONNECTION_RESET;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment