aboutsummaryrefslogtreecommitdiffstats
path: root/src/system/SocketError.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/system/SocketError.cxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/system/SocketError.cxx b/src/system/SocketError.cxx
index d3569c6f1..315a86e1f 100644
--- a/src/system/SocketError.cxx
+++ b/src/system/SocketError.cxx
@@ -21,4 +21,26 @@
#include "SocketError.hxx"
#include "util/Domain.hxx"
+#include <glib.h>
+
const Domain socket_domain("socket");
+
+#ifdef WIN32
+
+SocketErrorMessage::SocketErrorMessage(socket_error_t code)
+{
+ DWORD nbytes = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |
+ FORMAT_MESSAGE_IGNORE_INSERTS |
+ FORMAT_MESSAGE_MAX_WIDTH_MASK,
+ NULL, code, 0,
+ (LPSTR)msg, sizeof(msg), NULL);
+ if (nbytes == 0)
+ strcpy(msg, "Unknown error");
+}
+
+#else
+
+SocketErrorMessage::SocketErrorMessage(socket_error_t code)
+ :msg(g_strerror(code)) {}
+
+#endif