]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/network.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / network.h
index 9f7b78202ee0bbc2262a3ce1388d18ed6fb4274f..191c00891f77ea27cfbb942172fdc83cd95161fe 100644 (file)
 #include <winsock2.h>
 #include <ws2tcpip.h>
 
+#ifdef EPROTONOSUPPORT
+# undef EPROTONOSUPPORT
+#endif
 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT
+#ifdef ETIMEDOUT
+# undef ETIMEDOUT
+#endif
 #define ETIMEDOUT       WSAETIMEDOUT
+#ifdef ECONNREFUSED
+# undef ECONNREFUSED
+#endif
 #define ECONNREFUSED    WSAECONNREFUSED
+#ifdef EINPROGRESS
+# undef EINPROGRESS
+#endif
 #define EINPROGRESS     WSAEINPROGRESS
 
 int ff_neterrno(void);