diff stream/tcp.c @ 27472:c0b233cd30ca

Revert moving closesocket definition and network headers to network.h. This caused lots of trouble on MinGW, we need a different solution.
author diego
date Sun, 31 Aug 2008 13:59:54 +0000
parents be85aae103f2
children ae5da477539e
line wrap: on
line diff
--- a/stream/tcp.c	Sun Aug 31 13:56:18 2008 +0000
+++ b/stream/tcp.c	Sun Aug 31 13:59:54 2008 +0000
@@ -19,7 +19,18 @@
 
 #include "mp_msg.h"
 #include "help_mp.h"
-#include "network.h"
+
+#ifndef HAVE_WINSOCK2_H
+#include <netdb.h>
+#include <netinet/in.h>
+#include <sys/socket.h>
+#include <arpa/inet.h>
+#define closesocket close
+#else
+#include <winsock2.h>
+#include <ws2tcpip.h>
+#endif
+
 #include "stream.h"
 #include "tcp.h"