diff options
Diffstat (limited to 'cppe/src/IceE/Network.cpp')
-rw-r--r-- | cppe/src/IceE/Network.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppe/src/IceE/Network.cpp b/cppe/src/IceE/Network.cpp index 790bd2bd87c..505468b3168 100644 --- a/cppe/src/IceE/Network.cpp +++ b/cppe/src/IceE/Network.cpp @@ -87,6 +87,7 @@ IceInternal::connectFailed() return error == WSAECONNREFUSED || error == WSAETIMEDOUT || error == WSAENETUNREACH || + error == WSAEHOSTUNREACH || error == WSAECONNRESET || error == WSAESHUTDOWN || error == WSAECONNABORTED; @@ -94,6 +95,7 @@ IceInternal::connectFailed() return errno == ECONNREFUSED || errno == ETIMEDOUT || errno == ENETUNREACH || + errno == EHOSTUNREACH || errno == ECONNRESET || errno == ESHUTDOWN || errno == ECONNABORTED; |