mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-23 13:24:18 +00:00
Merge pull request #694 from luke-jr/restore_old_miniupnp_compat
Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)
This commit is contained in:
commit
ca287d66f2
15
src/net.cpp
15
src/net.cpp
@ -1132,11 +1132,17 @@ void ThreadMapPort2(void* parg)
|
|||||||
const char * rootdescurl = 0;
|
const char * rootdescurl = 0;
|
||||||
const char * multicastif = 0;
|
const char * multicastif = 0;
|
||||||
const char * minissdpdpath = 0;
|
const char * minissdpdpath = 0;
|
||||||
int error = 0;
|
|
||||||
struct UPNPDev * devlist = 0;
|
struct UPNPDev * devlist = 0;
|
||||||
char lanaddr[64];
|
char lanaddr[64];
|
||||||
|
|
||||||
|
#ifndef UPNPDISCOVER_SUCCESS
|
||||||
|
/* miniupnpc 1.5 */
|
||||||
|
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0);
|
||||||
|
#else
|
||||||
|
/* miniupnpc 1.6 */
|
||||||
|
int error = 0;
|
||||||
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
|
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
|
||||||
|
#endif
|
||||||
|
|
||||||
struct UPNPUrls urls;
|
struct UPNPUrls urls;
|
||||||
struct IGDdatas data;
|
struct IGDdatas data;
|
||||||
@ -1148,8 +1154,15 @@ void ThreadMapPort2(void* parg)
|
|||||||
char intClient[16];
|
char intClient[16];
|
||||||
char intPort[6];
|
char intPort[6];
|
||||||
string strDesc = "Bitcoin " + FormatFullVersion();
|
string strDesc = "Bitcoin " + FormatFullVersion();
|
||||||
|
#ifndef UPNPDISCOVER_SUCCESS
|
||||||
|
/* miniupnpc 1.5 */
|
||||||
|
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
|
||||||
|
port, port, lanaddr, strDesc.c_str(), "TCP", 0);
|
||||||
|
#else
|
||||||
|
/* miniupnpc 1.6 */
|
||||||
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
|
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
|
||||||
port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0");
|
port, port, lanaddr, strDesc.c_str(), "TCP", 0, "0");
|
||||||
|
#endif
|
||||||
|
|
||||||
if(r!=UPNPCOMMAND_SUCCESS)
|
if(r!=UPNPCOMMAND_SUCCESS)
|
||||||
printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n",
|
printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user