mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-14 08:47:54 +00:00
Merge pull request #1792 from Diapolo/rem_double_errfunc
replace 2x WSAGetLastError() with 1x WSAGetLastError() call
This commit is contained in:
commit
97e02a8d52
@ -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…
Reference in New Issue
Block a user