Browse Source

fixed build error

pull/67/head
orignal 3 years ago
parent
commit
daa82fc5eb
  1. 2
      i2pd
  2. 8
      routerinfo.cpp

2
i2pd

@ -1 +1 @@ @@ -1 +1 @@
Subproject commit 3925540517d31d62d1ad89158e2a075c9d539463
Subproject commit ac10f3055d648c8718c668ae772d4f94c0145503

8
routerinfo.cpp

@ -75,9 +75,15 @@ int main(int argc, char * argv[]) @@ -75,9 +75,15 @@ int main(int argc, char * argv[])
i2p::data::RouterInfo ri(fname);
std::vector<std::shared_ptr<const i2p::data::RouterInfo::Address> > addrs;
auto a = ri.GetNTCP2Address(!ipv6);
auto a = ri.GetPublishedNTCP2V4Address();
if(a)
addrs.push_back(a);
if (ipv6)
{
a = ri.GetPublishedNTCP2V6Address();
if(a)
addrs.push_back(a);
}
a = ri.GetSSUAddress(!ipv6);
if(a)
addrs.push_back(a);

Loading…
Cancel
Save