1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

net-p2p/retroshare: fix build with miniupnpc 2.2.8

PR: 280298
This commit is contained in:
Dirk Meyer 2024-07-19 18:05:38 +02:00
parent 8752173ea6
commit d3319c96b9

View File

@ -0,0 +1,14 @@
--- src/network/C4Network2UPnPLinux.cpp.orig 2018-03-16 17:25:33 UTC
+++ src/network/C4Network2UPnPLinux.cpp
@@ -77,7 +77,11 @@ void C4Network2UPnPP::Init()
if ((devlist = upnpDiscover(2000, nullptr, nullptr, UPNP_LOCAL_PORT_ANY, 0, 2, &error)))
#endif
{
+#if MINIUPNPC_API_VERSION >= 18
+ if ((status = UPNP_GetValidIGD(devlist, &upnp_urls, &igd_data, lanaddr, sizeof(lanaddr), NULL, 0)))
+#else
if ((status = UPNP_GetValidIGD(devlist, &upnp_urls, &igd_data, lanaddr, sizeof(lanaddr))))
+#endif
{
ThreadLogS("UPnP: Found IGD %s (status %d)", upnp_urls.controlURL, status);
initialized = true;