summaryrefslogtreecommitdiffstats
path: root/stream/tcp.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-31 13:59:54 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-08-31 13:59:54 +0000
commitf27f04a53d56a5b6ca89e80a67c140b6f009c439 (patch)
treea3c6f6918c8acb0d6788041fed312c78f00b5f11 /stream/tcp.c
parent133f1f8872559f88dcd557af9122e7acece169ac (diff)
downloadmpv-f27f04a53d56a5b6ca89e80a67c140b6f009c439.tar.bz2
mpv-f27f04a53d56a5b6ca89e80a67c140b6f009c439.tar.xz
Revert moving closesocket definition and network headers to network.h.
This caused lots of trouble on MinGW, we need a different solution. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27504 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tcp.c')
-rw-r--r--stream/tcp.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/stream/tcp.c b/stream/tcp.c
index e75e89d609..7eb5fc11b8 100644
--- a/stream/tcp.c
+++ b/stream/tcp.c
@@ -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"