mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-01-26 03:02:56 -03:00
Merge pull request #4604
0fbbb065
p2p: a negative result from UPNP_GetValidIGD is an error (moneromooo-monero)
This commit is contained in:
commit
481d7ed147
1 changed files with 2 additions and 2 deletions
|
@ -2042,7 +2042,7 @@ namespace nodetool
|
||||||
char lanAddress[64];
|
char lanAddress[64];
|
||||||
result = UPNP_GetValidIGD(deviceList, &urls, &igdData, lanAddress, sizeof lanAddress);
|
result = UPNP_GetValidIGD(deviceList, &urls, &igdData, lanAddress, sizeof lanAddress);
|
||||||
freeUPNPDevlist(deviceList);
|
freeUPNPDevlist(deviceList);
|
||||||
if (result != 0) {
|
if (result > 0) {
|
||||||
if (result == 1) {
|
if (result == 1) {
|
||||||
std::ostringstream portString;
|
std::ostringstream portString;
|
||||||
portString << port;
|
portString << port;
|
||||||
|
@ -2088,7 +2088,7 @@ namespace nodetool
|
||||||
char lanAddress[64];
|
char lanAddress[64];
|
||||||
result = UPNP_GetValidIGD(deviceList, &urls, &igdData, lanAddress, sizeof lanAddress);
|
result = UPNP_GetValidIGD(deviceList, &urls, &igdData, lanAddress, sizeof lanAddress);
|
||||||
freeUPNPDevlist(deviceList);
|
freeUPNPDevlist(deviceList);
|
||||||
if (result != 0) {
|
if (result > 0) {
|
||||||
if (result == 1) {
|
if (result == 1) {
|
||||||
std::ostringstream portString;
|
std::ostringstream portString;
|
||||||
portString << port;
|
portString << port;
|
||||||
|
|
Loading…
Add table
Reference in a new issue