diff stream/udp.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/udp.c	Sun Aug 31 13:56:18 2008 +0000
+++ b/stream/udp.c	Sun Aug 31 13:59:54 2008 +0000
@@ -31,8 +31,18 @@
 #include <sys/time.h>
 #include <ctype.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 "mp_msg.h"
-#include "network.h"
 #include "url.h"
 #include "udp.h"