diff options
Diffstat (limited to 'net-p2p/airdcpp-webclient')
-rw-r--r-- | net-p2p/airdcpp-webclient/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch | 22 |
2 files changed, 0 insertions, 23 deletions
diff --git a/net-p2p/airdcpp-webclient/Manifest b/net-p2p/airdcpp-webclient/Manifest index 1602dde79663..45a53adf02d1 100644 --- a/net-p2p/airdcpp-webclient/Manifest +++ b/net-p2p/airdcpp-webclient/Manifest @@ -1,4 +1,3 @@ -AUX airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch 700 BLAKE2B 3e611b191e231ee4f3ab6e10b2eda7e4080b9001e01776129f844dd1a3e755e84c2b9f8a58d8f97679c815e4d5473ff59173aedf7f928e1c5917c09e7d6977f3 SHA512 07a971e8e883745007d8b07cdf790f38ece4821c1f6210b68fbca2507dc854e89b0f0be8ebe3535218435eb30814cb97d8ba69350149ff071e37e46671b5dd44 AUX airdcppd.confd 198 BLAKE2B 7d3fbce6527a7f1971f544a37215fa73ed1f19bc5f6c4c3ef90c28b170b84ecd3a82da77b582b69ef442a9a455752192ba4b6b33aeb9a43587c0209fdf380342 SHA512 025ec93c208173771fe697574c9161b9af8d740eab0b1290c8d3857961dc3635339bdb9c18b97fdde6fa7dc8924f4453b9c609ca57e61f1cad9ff47683fb613e AUX airdcppd.initd 584 BLAKE2B 6e19d6088b26153527fa51e3789c3968647af3f7a2b1fbe2b355587b14eef94b8800a78565ce3bd54f0474542496bfd9f80566c36fcf6f1e51f55c48aa0654ee SHA512 f6de7a576eaef662e73dd488acd956371891278a6fa6c912be864c630a22435541deaca9055c6d7912bf483de228db2cd0bd9c9666a1a436de55112561783721 AUX airdcppd.service 302 BLAKE2B 5e446eb4253c71648e8e6850da4d71e6f16bdb6d82b611882ba4b1ff755073ff611a5502f5f9dbfc94020610ccef9a022add2f85721d464cba94907320618e66 SHA512 79aa352d7943e5297835ec226142661f084a39bd8ccaebace8d4356db995e2eff7c77a9f04ee636bd50e61103bc5a30e83fa126ffa8d77ec068053da2c1b9508 diff --git a/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch b/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch deleted file mode 100644 index 64dcce950d48..000000000000 --- a/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.12.1-miniupnpc-2.2.8.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://github.com/airdcpp/airdcpp-windows/commit/2b1cd3d05774ce8134186bb9977a45cf00aaaef5 - -From 2b1cd3d05774ce8134186bb9977a45cf00aaaef5 Mon Sep 17 00:00:00 2001 -From: maksis <maksis@adrenaline-network.com> -Date: Thu, 13 Jun 2024 20:05:17 +0300 -Subject: [PATCH] Add support for miniupnpc 2.2.8 - ---- a/airdcpp-core/airdcpp/Mapper_MiniUPnPc.cpp -+++ b/airdcpp-core/airdcpp/Mapper_MiniUPnPc.cpp -@@ -108,7 +108,12 @@ bool Mapper_MiniUPnPc::init() { - UPNPUrls urls; - IGDdatas data; - -+#if (MINIUPNPC_API_VERSION >= 18) -+ auto ret = UPNP_GetValidIGD(devices, &urls, &data, 0, 0, nullptr, 0); -+#else - auto ret = UPNP_GetValidIGD(devices, &urls, &data, 0, 0); -+#endif -+ - - bool ok = ret == 1; - if(ok) { |