Merge pull request #26220 from 78andyp/blurayfixes
[xbmc.git] / lib / libUPnP / patches / 0047-neptune-fix-device-discovery-on-windows.patch
blob391ee3b3021cdb971f337e4b54b5a8e8f72b5c3f
1 --- a/lib/libUPnP/Neptune/Source/System/Bsd/NptBsdSockets.cpp
2 +++ b/lib/libUPnP/Neptune/Source/System/Bsd/NptBsdSockets.cpp
3 @@ -131,46 +131,19 @@
4 #undef SetPort
5 #endif
7 -#if !defined(EWOULDBLOCK)
8 #define EWOULDBLOCK WSAEWOULDBLOCK
9 -#endif
10 -#if !defined(EINPROGRESS)
11 #define EINPROGRESS WSAEINPROGRESS
12 -#endif
13 -#if !defined(ECONNREFUSED)
14 #define ECONNREFUSED WSAECONNREFUSED
15 -#endif
16 -#if !defined(ECONNABORTED)
17 #define ECONNABORTED WSAECONNABORTED
18 -#endif
19 -#if !defined(ECONNRESET)
20 #define ECONNRESET WSAECONNRESET
21 -#endif
22 -#if !defined(ETIMEDOUT)
23 #define ETIMEDOUT WSAETIMEDOUT
24 -#endif
25 -#if !defined(ENETRESET)
26 #define ENETRESET WSAENETRESET
27 -#endif
28 -#if !defined(EADDRINUSE)
29 #define EADDRINUSE WSAEADDRINUSE
30 -#endif
31 -#if !defined(ENETDOWN)
32 #define ENETDOWN WSAENETDOWN
33 -#endif
34 -#if !defined(ENETUNREACH)
35 #define ENETUNREACH WSAENETUNREACH
36 -#endif
37 -#if !defined(EHOSTUNREACH)
38 -#define EHOSTUNREACH WSAEHOSTUNREACH
39 -#endif
40 -#if !defined(ENOTCONN)
41 #define ENOTCONN WSAENOTCONN
42 -#endif
43 #if !defined(EAGAIN)
44 #define EAGAIN WSAEWOULDBLOCK
45 -#endif
46 -#if !defined(EINTR)
47 #define EINTR WSAEINTR
48 #endif
49 #if !defined(SHUT_RDWR)