mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-13 08:17:38 +01:00
use shared pointer for RouterInfo's addreses list
This commit is contained in:
parent
410d2c2fa9
commit
d0d0cd8445
1 changed files with 6 additions and 4 deletions
|
@ -159,8 +159,9 @@ namespace transport
|
||||||
|
|
||||||
void UPnP::PortMapping ()
|
void UPnP::PortMapping ()
|
||||||
{
|
{
|
||||||
const auto& a = context.GetRouterInfo().GetAddresses();
|
auto a = context.GetRouterInfo().GetAddresses();
|
||||||
for (const auto& address : a)
|
if (!a) return;
|
||||||
|
for (const auto& address : *a)
|
||||||
{
|
{
|
||||||
if (!address->host.is_v6 () && address->port)
|
if (!address->host.is_v6 () && address->port)
|
||||||
TryPortMapping (address);
|
TryPortMapping (address);
|
||||||
|
@ -210,8 +211,9 @@ namespace transport
|
||||||
|
|
||||||
void UPnP::CloseMapping ()
|
void UPnP::CloseMapping ()
|
||||||
{
|
{
|
||||||
const auto& a = context.GetRouterInfo().GetAddresses();
|
const a = context.GetRouterInfo().GetAddresses();
|
||||||
for (const auto& address : a)
|
if (!a) return;
|
||||||
|
for (const auto& address : *a)
|
||||||
{
|
{
|
||||||
if (!address->host.is_v6 () && address->port)
|
if (!address->host.is_v6 () && address->port)
|
||||||
CloseMapping (address);
|
CloseMapping (address);
|
||||||
|
|
Loading…
Add table
Reference in a new issue