summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-04-24 19:54:58 +0200
committerattilamolnar <attilamolnar@hush.com>2013-04-24 19:54:58 +0200
commit2bb64c5dcfb66e9bf7f6114de6501fd5dcd97138 (patch)
treeff4b77e32e5df3800dd8c27434ba375978e27ae8 /src
parent40398162c326eab06d1ce6e9397c25b0a32fa368 (diff)
Move SocketEngine::IgnoreError() code into socketengine.h and add test for EWOULDBLOCK
Diffstat (limited to 'src')
-rw-r--r--src/socketengine.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/socketengine.cpp b/src/socketengine.cpp
index cbdfb5651..6c99edc95 100644
--- a/src/socketengine.cpp
+++ b/src/socketengine.cpp
@@ -255,17 +255,3 @@ void SocketEngine::GetStats(float &kbitpersec_in, float &kbitpersec_out, float &
kbitpersec_in = in_kbit / 1024;
kbitpersec_out = out_kbit / 1024;
}
-
-bool SocketEngine::IgnoreError()
-{
- if (errno == EAGAIN)
- return true;
-
-#ifdef _WIN32
- if (WSAGetLastError() == WSAEWOULDBLOCK)
- return true;
-#endif
-
- return false;
-}
-