summaryrefslogtreecommitdiffstats
path: root/thirdparty/miniupnpc/src/minissdpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/miniupnpc/src/minissdpc.c')
-rw-r--r--thirdparty/miniupnpc/src/minissdpc.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/thirdparty/miniupnpc/src/minissdpc.c b/thirdparty/miniupnpc/src/minissdpc.c
index 98c5b37463..57cb99962e 100644
--- a/thirdparty/miniupnpc/src/minissdpc.c
+++ b/thirdparty/miniupnpc/src/minissdpc.c
@@ -1,9 +1,9 @@
-/* $Id: minissdpc.c,v 1.49 2021/05/13 11:00:36 nanard Exp $ */
+/* $Id: minissdpc.c,v 1.51 2024/05/16 00:12:05 nanard Exp $ */
/* vim: tabstop=4 shiftwidth=4 noexpandtab
* Project : miniupnp
* Web : http://miniupnp.free.fr/ or https://miniupnp.tuxfamily.org/
* Author : Thomas BERNARD
- * copyright (c) 2005-2021 Thomas Bernard
+ * copyright (c) 2005-2024 Thomas Bernard
* This software is subjet to the conditions detailed in the
* provided LICENCE file. */
#include <stdio.h>
@@ -548,7 +548,7 @@ ssdpDiscoverDevices(const char * const deviceTypes[],
#ifdef _WIN32
unsigned long _ttl = (unsigned long)ttl;
#endif
- int linklocal = 1;
+ int linklocal = 0; /* try first with site-local multicast */
int sentok;
if(error)
@@ -1007,9 +1007,10 @@ ssdpDiscoverDevices(const char * const deviceTypes[],
/* switch linklocal flag */
if(linklocal) {
linklocal = 0;
- --deviceIndex;
} else {
+ /* try again with linklocal multicast */
linklocal = 1;
+ --deviceIndex;
}
}
}