mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
- Handle STATUS_REMOTE_NOT_LISTENING
svn path=/branches/aicom-network-fixes/; revision=35062
This commit is contained in:
parent
221590c8f7
commit
6286fe5bb6
1 changed files with 1 additions and 0 deletions
|
@ -288,6 +288,7 @@ DWORD MsafdReturnWithErrno( NTSTATUS Status, LPINT Errno, DWORD Received,
|
||||||
case STATUS_BUFFER_OVERFLOW: *Errno = WSAEMSGSIZE; break;
|
case STATUS_BUFFER_OVERFLOW: *Errno = WSAEMSGSIZE; break;
|
||||||
case STATUS_INSUFFICIENT_RESOURCES: *Errno = WSA_NOT_ENOUGH_MEMORY; break;
|
case STATUS_INSUFFICIENT_RESOURCES: *Errno = WSA_NOT_ENOUGH_MEMORY; break;
|
||||||
case STATUS_INVALID_CONNECTION: *Errno = WSAEAFNOSUPPORT; break;
|
case STATUS_INVALID_CONNECTION: *Errno = WSAEAFNOSUPPORT; break;
|
||||||
|
case STATUS_REMOTE_NOT_LISTENING: *Errno = WSAECONNRESET; break;
|
||||||
default:
|
default:
|
||||||
DbgPrint("MSAFD: Error %x is unknown\n", Status);
|
DbgPrint("MSAFD: Error %x is unknown\n", Status);
|
||||||
*Errno = WSAEINVAL; break;
|
*Errno = WSAEINVAL; break;
|
||||||
|
|
Loading…
Reference in a new issue