summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2015-10-22 21:17:56 +0000
committerAnthony G. Basile <blueness@gentoo.org>2015-10-23 06:13:14 -0400
commitcb1cd6d23c56ff06009803702be87a2a2a229331 (patch)
tree56885034721b03368766e03cee293cba3a5f1be1 /net-p2p/bitcoind/files
parentapp-text/ghostscript-gpl: Backport fix for missing header (diff)
downloadgentoo-cb1cd6d23c56ff06009803702be87a2a2a229331.tar.gz
gentoo-cb1cd6d23c56ff06009803702be87a2a2a229331.tar.bz2
gentoo-cb1cd6d23c56ff06009803702be87a2a2a229331.zip
net-p2p/bitcoin{-qt,d}: Backport miniupnpc-14 support to older versions
Diffstat (limited to 'net-p2p/bitcoind/files')
-rw-r--r--net-p2p/bitcoind/files/miniupnpc-14.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/net-p2p/bitcoind/files/miniupnpc-14.patch b/net-p2p/bitcoind/files/miniupnpc-14.patch
new file mode 100644
index 000000000000..aa8e32ff7c1a
--- /dev/null
+++ b/net-p2p/bitcoind/files/miniupnpc-14.patch
@@ -0,0 +1,28 @@
+commit 9f3e48e5219a09b5ddfd6883d1f0498910eff4b6 (origin-pull/6583/head)
+Author: Pavel Vasin <pavel@vasin.nl>
+Date: Sun Aug 23 23:53:49 2015 +0300
+
+ add support for miniupnpc api version 14
+
+ The value of new arg ttl is set to 2 as it's recommended default.
+
+diff --git a/src/net.cpp b/src/net.cpp
+index fb5726a..4c6331f 100644
+--- a/src/net.cpp
++++ b/src/net.cpp
+@@ -1120,10 +1120,14 @@ void ThreadMapPort()
+ #ifndef UPNPDISCOVER_SUCCESS
+ /* miniupnpc 1.5 */
+ devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0);
+-#else
++#elif MINIUPNPC_API_VERSION < 14
+ /* miniupnpc 1.6 */
+ int error = 0;
+ devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
++#else
++ /* miniupnpc 1.9.20150730 */
++ int error = 0;
++ devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 2, &error);
+ #endif
+
+ struct UPNPUrls urls;