parent
8ddd8634d4
commit
1f3b8462f0
|
@ -548,7 +548,7 @@ ssdpDiscoverDevices(const char * const deviceTypes[],
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
unsigned long _ttl = (unsigned long)ttl;
|
unsigned long _ttl = (unsigned long)ttl;
|
||||||
#endif
|
#endif
|
||||||
int linklocal = 1;
|
int linklocal = 0; /* try first with site-local multicast */
|
||||||
int sentok;
|
int sentok;
|
||||||
|
|
||||||
if(error)
|
if(error)
|
||||||
|
@ -1007,9 +1007,10 @@ ssdpDiscoverDevices(const char * const deviceTypes[],
|
||||||
/* switch linklocal flag */
|
/* switch linklocal flag */
|
||||||
if(linklocal) {
|
if(linklocal) {
|
||||||
linklocal = 0;
|
linklocal = 0;
|
||||||
--deviceIndex;
|
|
||||||
} else {
|
} else {
|
||||||
|
/* try again with linklocal multicast */
|
||||||
linklocal = 1;
|
linklocal = 1;
|
||||||
|
--deviceIndex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue