This commit is contained in:
Denis Robert 2025-03-30 17:17:22 +02:00 committed by GitHub
commit deb3a83607
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 */