mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[IP]
- Handle an EPIPE error svn path=/trunk/; revision=52508
This commit is contained in:
parent
12404ace17
commit
c1276124ac
1 changed files with 2 additions and 1 deletions
|
@ -654,9 +654,10 @@ NTSTATUS TCPTranslateError( int OskitError ) {
|
|||
Status = STATUS_INSUFFICIENT_RESOURCES;
|
||||
DbgPrint("OskitTCP: ENOMEM/ENOBUFS\n");
|
||||
break;
|
||||
case OSK_EPIPE:
|
||||
case OSK_ESHUTDOWN:
|
||||
Status = STATUS_FILE_CLOSED;
|
||||
DbgPrint("OskitTCP: ESHUTDOWN\n");
|
||||
DbgPrint("OskitTCP: ESHUTDOWN/EPIPE\n");
|
||||
break;
|
||||
case OSK_EMSGSIZE:
|
||||
Status = STATUS_BUFFER_TOO_SMALL;
|
||||
|
|
Loading…
Reference in a new issue