Linux uses EAGAIN instead of EWOULDBLOCK (only used on Windows)
This commit is contained in:
parent
ef4ac51170
commit
2c9109936c
|
@ -544,7 +544,7 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
|
||||||
return -30; // EISCONN
|
return -30; // EISCONN
|
||||||
case ERRORCODE(ENOTCONN):
|
case ERRORCODE(ENOTCONN):
|
||||||
return -6; // EAGAIN
|
return -6; // EAGAIN
|
||||||
case ERRORCODE(EWOULDBLOCK):
|
case EITHER(WSAEWOULDBLOCK, EAGAIN):
|
||||||
case ERRORCODE(EINPROGRESS):
|
case ERRORCODE(EINPROGRESS):
|
||||||
if(isRW){
|
if(isRW){
|
||||||
return -6; // EAGAIN
|
return -6; // EAGAIN
|
||||||
|
|
Loading…
Reference in New Issue