aboutsummaryrefslogtreecommitdiff
blob: aa8e32ff7c1a250bf6f5d48af11800bf0e809476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;