miniupnpc.c: use unsigned long for IP_MULTICAST_TTL with win32
fixes 1da63faa4f
for win32
This commit is contained in:
parent
739e0b914a
commit
aba8c3f3d7
|
@ -381,6 +381,7 @@ upnpDiscoverDevices(const char * const deviceTypes[],
|
|||
#endif
|
||||
#ifdef _WIN32
|
||||
MIB_IPFORWARDROW ip_forward;
|
||||
unsigned long _ttl = (unsigned long)ttl;
|
||||
#endif
|
||||
int linklocal = 1;
|
||||
|
||||
|
@ -528,7 +529,11 @@ upnpDiscoverDevices(const char * const deviceTypes[],
|
|||
return NULL;
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
if(setsockopt(sudp, IPPROTO_IP, IP_MULTICAST_TTL, &_ttl, sizeof(_ttl)) < 0)
|
||||
#else /* _WIN32 */
|
||||
if(setsockopt(sudp, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)) < 0)
|
||||
#endif /* _WIN32 */
|
||||
{
|
||||
/* not a fatal error */
|
||||
PRINT_SOCKET_ERROR("setsockopt(IP_MULTICAST_TTL,...)");
|
||||
|
|
Loading…
Reference in New Issue