mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Merge 2572d1d279
into c5325f5016
This commit is contained in:
commit
deb3a83607
1 changed files with 11 additions and 0 deletions
|
@ -1819,6 +1819,17 @@ WSPAccept(
|
|||
}
|
||||
}
|
||||
|
||||
/* AcceptSocket Async Events */
|
||||
if (Socket->SharedData->NonBlocking)
|
||||
{
|
||||
/* The socket created by the accept function has the same
|
||||
* properties as the listening socket used to accept it. */
|
||||
WSAAsyncSelect(AcceptSocket,
|
||||
Socket->SharedData->hWnd,
|
||||
Socket->SharedData->wMsg,
|
||||
Socket->SharedData->AsyncEvents);
|
||||
}
|
||||
|
||||
if (lpErrno) *lpErrno = NO_ERROR;
|
||||
|
||||
/* Return Socket */
|
||||
|
|
Loading…
Reference in a new issue