mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-18 23:36:39 +01:00
show NTCP2 address
This commit is contained in:
parent
0a33c18e36
commit
83bbe6a9d9
1 changed files with 8 additions and 7 deletions
|
@ -259,20 +259,21 @@ namespace http {
|
||||||
s << "<b>Our external address:</b>" << "<br>\r\n" ;
|
s << "<b>Our external address:</b>" << "<br>\r\n" ;
|
||||||
for (const auto& address : i2p::context.GetRouterInfo().GetAddresses())
|
for (const auto& address : i2p::context.GetRouterInfo().GetAddresses())
|
||||||
{
|
{
|
||||||
if (address->IsNTCP2 ())
|
if (address->IsNTCP2 () && !address->IsPublishedNTCP2 ())
|
||||||
{
|
{
|
||||||
// TODO: show actual address
|
|
||||||
s << "NTCP2 supported <br>\r\n";
|
s << "NTCP2 supported <br>\r\n";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
switch (address->transportStyle)
|
switch (address->transportStyle)
|
||||||
{
|
{
|
||||||
case i2p::data::RouterInfo::eTransportNTCP:
|
case i2p::data::RouterInfo::eTransportNTCP:
|
||||||
if (address->host.is_v6 ())
|
{
|
||||||
s << "NTCP6 ";
|
s << "NTCP";
|
||||||
else
|
if (address->IsPublishedNTCP2 ()) s << "2";
|
||||||
s << "NTCP ";
|
if (address->host.is_v6 ()) s << "6";
|
||||||
|
s << " ";
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case i2p::data::RouterInfo::eTransportSSU:
|
case i2p::data::RouterInfo::eTransportSSU:
|
||||||
if (address->host.is_v6 ())
|
if (address->host.is_v6 ())
|
||||||
s << "SSU6 ";
|
s << "SSU6 ";
|
||||||
|
|
Loading…
Add table
Reference in a new issue