mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
- Handle STATUS_NETWORK_UNREACHABLE
svn path=/trunk/; revision=40583
This commit is contained in:
parent
abaebc22ca
commit
51d9909734
1 changed files with 4 additions and 0 deletions
|
@ -344,6 +344,10 @@ DWORD MsafdReturnWithErrno(NTSTATUS Status,
|
|||
DbgPrint("MSAFD: STATUS_REMOTE_NOT_LISTENING\n");
|
||||
*Errno = WSAECONNRESET;
|
||||
break;
|
||||
case STATUS_NETWORK_UNREACHABLE:
|
||||
DbgPrint("MSAFD: STATUS_NETWORK_UNREACHABLE\n");
|
||||
*Errno = WSAENETUNREACH;
|
||||
break;
|
||||
case STATUS_FILE_CLOSED:
|
||||
DbgPrint("MSAFD: STATUS_FILE_CLOSED\n");
|
||||
*Errno = WSAENOTSOCK;
|
||||
|
|
Loading…
Reference in a new issue