mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 07:41:48 +00:00
- Handle STATUS_INSUFFICIENT_RESOURCES
svn path=/branches/aicom-network-fixes/; revision=35061
This commit is contained in:
parent
93abe83cd2
commit
221590c8f7
1 changed files with 1 additions and 0 deletions
|
@ -286,6 +286,7 @@ DWORD MsafdReturnWithErrno( NTSTATUS Status, LPINT Errno, DWORD Received,
|
||||||
case STATUS_END_OF_FILE: *Errno = WSAESHUTDOWN; break;
|
case STATUS_END_OF_FILE: *Errno = WSAESHUTDOWN; break;
|
||||||
case STATUS_PENDING: *Errno = WSA_IO_PENDING; break;
|
case STATUS_PENDING: *Errno = WSA_IO_PENDING; break;
|
||||||
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_INVALID_CONNECTION: *Errno = WSAEAFNOSUPPORT; break;
|
case STATUS_INVALID_CONNECTION: *Errno = WSAEAFNOSUPPORT; break;
|
||||||
default:
|
default:
|
||||||
DbgPrint("MSAFD: Error %x is unknown\n", Status);
|
DbgPrint("MSAFD: Error %x is unknown\n", Status);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue