mirror of
https://github.com/kenzok8/small-package
synced 2025-01-08 11:17:34 +08:00
29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
From febfe49ca3ecab1a7142ecb34012c1f0b2bcdee8 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?C=C5=93ur?= <coeur@gmx.fr>
|
|
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<char, TR_ADDRSTRLEN>{};
|
|
- 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())));
|