mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-05-01 13:12:30 +02:00
fixed build error for LocalRouterInfo and SSU2
This commit is contained in:
parent
4835013d9e
commit
aadc780b44
3 changed files with 15 additions and 12 deletions
|
@ -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 << "# ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue