From 710abc0b3a23b65bc8fdc2d372871b2de102265b Mon Sep 17 00:00:00 2001 From: Karol Kolacinski Date: Sat, 6 Jul 2024 18:17:13 +0200 Subject: [PATCH] transmission: fix compilation with miniupnpc 2.2.8 Backport pending patch, which was submitted to upstream via GitHub to use modified function to compile it against miniupnpc 2.2.8. Signed-off-by: Karol Kolacinski --- .../010-temp-miniupnpc-2.2.8-compile.patch | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 net/transmission/patches/010-temp-miniupnpc-2.2.8-compile.patch diff --git a/net/transmission/patches/010-temp-miniupnpc-2.2.8-compile.patch b/net/transmission/patches/010-temp-miniupnpc-2.2.8-compile.patch new file mode 100644 index 0000000000..984ad0e5f4 --- /dev/null +++ b/net/transmission/patches/010-temp-miniupnpc-2.2.8-compile.patch @@ -0,0 +1,28 @@ +From febfe49ca3ecab1a7142ecb34012c1f0b2bcdee8 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?C=C5=93ur?= +Date: Sat, 15 Jun 2024 07:24:06 +0800 +Subject: [PATCH] bump miniupnpc to 2.2.8 (#6907) + +* bump miniupnpc to 2.2.8 +--- + libtransmission/port-forwarding-upnp.cc | 9 +++++++-- + 1 file changed, 7 insertions(+), 2 deletions(-) + +--- a/libtransmission/port-forwarding-upnp.cc ++++ b/libtransmission/port-forwarding-upnp.cc +@@ -275,8 +275,13 @@ tr_port_forwarding_state tr_upnpPulse(tr + + FreeUPNPUrls(&handle->urls); + auto lanaddr = std::array{}; +- if (UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1) == +- UPNP_IGD_VALID_CONNECTED) ++ if ( ++#if (MINIUPNPC_API_VERSION >= 18) ++ UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1, nullptr, 0) ++#else ++ UPNP_GetValidIGD(devlist, &handle->urls, &handle->data, std::data(lanaddr), std::size(lanaddr) - 1) ++#endif ++ == UPNP_IGD_VALID_CONNECTED) + { + tr_logAddInfo(fmt::format(_("Found Internet Gateway Device '{url}'"), fmt::arg("url", handle->urls.controlURL))); + tr_logAddInfo(fmt::format(_("Local Address is '{address}'"), fmt::arg("address", lanaddr.data())));