aboutsummaryrefslogtreecommitdiff
path: root/src/socket_util.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-01 01:35:54 +0100
committerMax Kellermann <max@duempel.org>2009-03-01 01:35:54 +0100
commit8c3df4cc83b72dfca20cbf82d4155a1025785dcc (patch)
tree5ecb2fb0af79aa4141f5302b4e7d3eb0e20af08a /src/socket_util.c
parenteb64f6542f71cec3dc33a14186443943b207c3ad (diff)
socket_util: include ws2tcpip.h for getnameinfo()
Windows doesn't have the standard headers sys/socket.h and netdb.h.
Diffstat (limited to 'src/socket_util.c')
-rw-r--r--src/socket_util.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/socket_util.c b/src/socket_util.c
index 31b65632..0fea281f 100644
--- a/src/socket_util.c
+++ b/src/socket_util.c
@@ -19,8 +19,12 @@
#include "socket_util.h"
#include "config.h"
+#ifndef G_OS_WIN32
#include <sys/socket.h>
#include <netdb.h>
+#else /* G_OS_WIN32 */
+#include <ws2tcpip.h>
+#endif /* G_OS_WIN32 */
#ifdef HAVE_IPV6
#include <string.h>