mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 02:54:01 +01:00
enclose IPv6 address in square brackets
This commit is contained in:
parent
fafdb0c590
commit
2ed281472f
|
@ -329,14 +329,15 @@ namespace http {
|
||||||
default:
|
default:
|
||||||
s << tr("Unknown");
|
s << tr("Unknown");
|
||||||
}
|
}
|
||||||
if (address->IsV6 ())
|
bool v6 = address->IsV6 ();
|
||||||
|
if (v6)
|
||||||
{
|
{
|
||||||
if (address->IsV4 ()) s << "v4";
|
if (address->IsV4 ()) s << "v4";
|
||||||
s << "v6";
|
s << "v6";
|
||||||
}
|
}
|
||||||
s << "</td>\r\n";
|
s << "</td>\r\n";
|
||||||
if (address->published)
|
if (address->published)
|
||||||
s << "<td>" << address->host.to_string() << ":" << address->port << "</td>\r\n";
|
s << "<td>" << (v6 ? "[" : "") << address->host.to_string() << (v6 ? "]:" : ":") << address->port << "</td>\r\n";
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
s << "<td>" << tr(/* tr: Shown when router doesn't publish itself and have "Firewalled" state */ "supported");
|
s << "<td>" << tr(/* tr: Shown when router doesn't publish itself and have "Firewalled" state */ "supported");
|
||||||
|
|
Loading…
Reference in a new issue