mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
don't publish invalid host/port
This commit is contained in:
parent
e537878b8a
commit
987497bb10
@ -1307,7 +1307,7 @@ namespace data
|
||||
else
|
||||
WriteString ("", s);
|
||||
|
||||
if (isPublished)
|
||||
if (isPublished && !address.host.is_unspecified ())
|
||||
{
|
||||
WriteString ("host", properties);
|
||||
properties << '=';
|
||||
@ -1410,7 +1410,7 @@ namespace data
|
||||
properties << ';';
|
||||
}
|
||||
}
|
||||
if (isPublished || (address.ssu && !address.IsSSU2 ()))
|
||||
if ((isPublished || (address.ssu && !address.IsSSU2 ())) && address.port)
|
||||
{
|
||||
WriteString ("port", properties);
|
||||
properties << '=';
|
||||
|
Loading…
Reference in New Issue
Block a user