Don't advertise own peer if run with --no-incoming or reported IP is 127.0.0.1

This commit is contained in:
Lee Miller 2024-07-04 02:47:52 +03:00
parent c4df256415
commit a3cffce1ed
Signed by: lee.miller
GPG Key ID: 4F97A5EA88F4AB63

View File

@ -411,7 +411,10 @@ class ConnectionBase(threading.Thread):
shared.node_pool.add((self.host, self.port)) shared.node_pool.add((self.host, self.port))
elif self.network == 'i2p': elif self.network == 'i2p':
shared.i2p_node_pool.add((self.host, 'i2p')) shared.i2p_node_pool.add((self.host, 'i2p'))
if self.network == 'ip': if (
self.network == 'ip' and shared.listen_for_connections
and version.host != '127.0.0.1'
):
shared.address_advertise_queue.put(structure.NetAddr( shared.address_advertise_queue.put(structure.NetAddr(
shared.services, version.host, shared.listening_port)) shared.services, version.host, shared.listening_port))
if self.server: if self.server: