aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Jacquin <bertrand@jacquin.bzh>2022-07-17 23:52:34 +0100
committerBertrand Jacquin <bertrand@jacquin.bzh>2024-04-09 23:25:50 +0100
commit8110dfc55db4b15803efbcd48ecfe2f52da77ee4 (patch)
treef76dff734a64ef121296c15dbc1681a102ce1630
parentnet: enable IPv6 by default (diff)
downloadmonero-dev/beber/ipv6.tar.xz
net: add IPv6 nodes to default listdev/beber/ipv6
-rw-r--r--src/p2p/net_node.inl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl
index 09dead8a7..1e5343ef0 100644
--- a/src/p2p/net_node.inl
+++ b/src/p2p/net_node.inl
@@ -734,6 +734,7 @@ namespace nodetool
full_addrs.insert("51.79.173.165:28080");
full_addrs.insert("192.99.8.110:28080");
full_addrs.insert("37.187.74.171:28080");
+ full_addrs.insert("[2a05:d018:1705:1600::267c]:28080");
}
else if (m_nettype == cryptonote::STAGENET)
{
@@ -742,6 +743,7 @@ namespace nodetool
full_addrs.insert("51.79.173.165:38080");
full_addrs.insert("192.99.8.110:38080");
full_addrs.insert("37.187.74.171:38080");
+ full_addrs.insert("[2a05:d018:1705:1600::e4a1]:38080");
}
else if (m_nettype == cryptonote::FAKECHAIN)
{
@@ -755,6 +757,7 @@ namespace nodetool
full_addrs.insert("51.79.173.165:18080");
full_addrs.insert("192.99.8.110:18080");
full_addrs.insert("37.187.74.171:18080");
+ full_addrs.insert("[2a05:d018:1705:1600::b8dc]:18080");
}
return full_addrs;
}