New supernode: shoggoth.zerotier.com in Tokyo, Japan! This just about covers the entire world for global low-latency peer location and relaying.

This commit is contained in:
Adam Ierymenko 2014-03-05 23:21:23 +01:00
parent b2673eab55
commit 54313212a4

View File

@ -80,6 +80,13 @@ static inline std::map< Identity,std::vector<InetAddress> > _mkSupernodeMap()
addrs.push_back(InetAddress("128.199.254.204",ZT_DEFAULT_UDP_PORT));
sn[id] = addrs;
// shoggoth.zerotier.com - Tokyo, Japan
addrs.clear();
if (!id.fromString("48e8f875cb:0:5ca54f55e1094f65589f3e6d74158b6964d418ddac3570757128f1c6a2498322d92fcdcd47de459f4d1f9b38df2afd0c7b3fc247ba3d773c38ba35288f24988e"))
throw std::runtime_error("invalid identity in Defaults");
addrs.push_back(InetAddress("108.61.200.101",ZT_DEFAULT_UDP_PORT));
sn[id] = addrs;
return sn;
}