mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-02-05 11:24:19 +00:00
replace 2x WSAGetLastError() with 1x WSAGetLastError() call
This commit is contained in:
parent
8788221761
commit
4bd34b4966
@ -823,8 +823,9 @@ void ThreadSocketHandler2(void* parg)
|
|||||||
|
|
||||||
if (hSocket == INVALID_SOCKET)
|
if (hSocket == INVALID_SOCKET)
|
||||||
{
|
{
|
||||||
if (WSAGetLastError() != WSAEWOULDBLOCK)
|
int nErr = WSAGetLastError();
|
||||||
printf("socket error accept failed: %d\n", WSAGetLastError());
|
if (nErr != WSAEWOULDBLOCK)
|
||||||
|
printf("socket error accept failed: %d\n", nErr);
|
||||||
}
|
}
|
||||||
else if (nInbound >= GetArg("-maxconnections", 125) - MAX_OUTBOUND_CONNECTIONS)
|
else if (nInbound >= GetArg("-maxconnections", 125) - MAX_OUTBOUND_CONNECTIONS)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user