mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2024-12-06 19:26:18 +01:00
fixed build error for LocalRouterInfo and SSU2
This commit is contained in:
+2
-2
@@ -319,7 +319,7 @@ int main(int argc, char * argv[])
|
||||
delete [] k;
|
||||
}
|
||||
|
||||
RouterInfo ri(infofile);
|
||||
LocalRouterInfo ri(infofile);
|
||||
auto ident = ri.GetIdentHash();
|
||||
|
||||
|
||||
@@ -365,7 +365,7 @@ int main(int argc, char * argv[])
|
||||
|
||||
if (verbose) std::cout << "load " << infofile << std::endl;
|
||||
|
||||
RouterInfo ri(infofile);
|
||||
LocalRouterInfo ri(infofile);
|
||||
auto sig = ri.GetProperty(ROUTER_INFO_PROPERTY_FAMILY_SIG);
|
||||
if (ri.GetProperty(ROUTER_INFO_PROPERTY_FAMILY) != fam) {
|
||||
std::cout << infofile << " does not belong to " << fam << std::endl;
|
||||
|
||||
+1
-1
Submodule i2pd updated: 3c07665479...aead9db971
+12
-9
@@ -12,10 +12,10 @@ static void usage(const char * argv)
|
||||
template<typename Addr>
|
||||
static std::string address_style_string(Addr addr)
|
||||
{
|
||||
if(addr->transportStyle == i2p::data::RouterInfo::eTransportNTCP) {
|
||||
return "NTCP";
|
||||
} else if (addr->transportStyle == i2p::data::RouterInfo::eTransportSSU) {
|
||||
return "SSU";
|
||||
if(addr->transportStyle == i2p::data::RouterInfo::eTransportNTCP2) {
|
||||
return "NTCP2";
|
||||
} else if (addr->transportStyle == i2p::data::RouterInfo::eTransportSSU2) {
|
||||
return "SSU2";
|
||||
}
|
||||
return "???";
|
||||
|
||||
@@ -26,9 +26,9 @@ static void write_firewall_entry(std::ostream & o, Addr addr)
|
||||
{
|
||||
|
||||
std::string proto;
|
||||
if(addr->transportStyle == i2p::data::RouterInfo::eTransportNTCP) {
|
||||
if(addr->transportStyle == i2p::data::RouterInfo::eTransportNTCP2) {
|
||||
proto = "tcp";
|
||||
} else if (addr->transportStyle == i2p::data::RouterInfo::eTransportSSU) {
|
||||
} else if (addr->transportStyle == i2p::data::RouterInfo::eTransportSSU2) {
|
||||
proto = "udp";
|
||||
} else {
|
||||
// bail
|
||||
@@ -76,6 +76,9 @@ int main(int argc, char * argv[])
|
||||
|
||||
std::vector<std::shared_ptr<const i2p::data::RouterInfo::Address> > addrs;
|
||||
auto a = ri.GetPublishedNTCP2V4Address();
|
||||
if(a)
|
||||
addrs.push_back(a);
|
||||
a = ri.GetSSU2V4Address();
|
||||
if(a)
|
||||
addrs.push_back(a);
|
||||
if (ipv6)
|
||||
@@ -83,10 +86,10 @@ int main(int argc, char * argv[])
|
||||
a = ri.GetPublishedNTCP2V6Address();
|
||||
if(a)
|
||||
addrs.push_back(a);
|
||||
a = ri.GetSSU2V6Address();
|
||||
if(a)
|
||||
addrs.push_back(a);
|
||||
}
|
||||
a = ri.GetSSUAddress(!ipv6);
|
||||
if(a)
|
||||
addrs.push_back(a);
|
||||
|
||||
if(firewall)
|
||||
std::cout << "# ";
|
||||
|
||||
Reference in New Issue
Block a user