Defaults.cpp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * ZeroTier One - Global Peer to Peer Ethernet
  3. * Copyright (C) 2012-2013 ZeroTier Networks LLC
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * --
  19. *
  20. * ZeroTier may be used and distributed under the terms of the GPLv3, which
  21. * are available at: http://www.gnu.org/licenses/gpl-3.0.html
  22. *
  23. * If you would like to embed ZeroTier into a commercial application or
  24. * redistribute it in a modified binary form, please contact ZeroTier Networks
  25. * LLC. Start here: http://www.zerotier.com/
  26. */
  27. #include "Defaults.hpp"
  28. #include "Constants.hpp"
  29. namespace ZeroTier {
  30. const Defaults ZT_DEFAULTS;
  31. static inline std::map< Identity,std::vector<InetAddress> > _mkSupernodeMap()
  32. throw(std::runtime_error)
  33. {
  34. std::map< Identity,std::vector<InetAddress> > sn;
  35. Identity id;
  36. std::vector<InetAddress> addrs;
  37. // Nothing special about a supernode... except that they are
  38. // designated as such.
  39. // cthulhu.zerotier.com - New York, New York, USA
  40. addrs.clear();
  41. if (!id.fromString("271ee006a0:1:AgGXs3I+9CWrEmGMxc50x3E+trwtaa2ZMXDU6ezz92fFJXzlhRKGUY/uAToHDdH9XiLxtcA+kUQAZdC4Dy2xtqXxjw==:QgH5Nlx4oWEGVrwhNocqem+3VNd4qzt7RLrmuvqZvKPRS9R70LJYJQLlKZj0ri55Pzg+Mlwy4a4nAgfnRAWA+TW6R0EjSmq72MG585XGNfWBVk3LxMvxlNWErnVNFr2BQS9yzVp4pRjPLdCW4RB3dwEHBUgJ78rwMxQ6IghVCl8CjkDapg=="))
  42. throw std::runtime_error("invalid identity in Defaults");
  43. addrs.push_back(InetAddress("198.199.73.93",ZT_DEFAULT_UDP_PORT));
  44. sn[id] = addrs;
  45. // nyarlathotep.zerotier.com - San Francisco, California, USA
  46. addrs.clear();
  47. if (!id.fromString("fa9be4008b:1:AwCHXEi/PJuhtOPUZxnBSMiuGvj6XeRMWu9R9aLR3JD1qluADLQzUPSP2+81Dqvgi2wkQ2cqEpOlDPeUCvtlZwdXEA==:QgH4usG/wzsoUCtO2LL3qkwugtoXEz1PUJbmUzY8vbwzc5bckmVPjMqb4q2CF71+QVPV1K6shIV2EKkBMRSS/D/44EGEwC6tjFGZqmmogaC0P1uQeukTAF4qta46YgC4YQx54/Vd/Yfl8n1Bwmgm0gBB4W1ZQir3p+wp37MGlEN0rlXxqA=="))
  48. throw std::runtime_error("invalid identity in Defaults");
  49. addrs.push_back(InetAddress("198.199.97.220",ZT_DEFAULT_UDP_PORT));
  50. sn[id] = addrs;
  51. // shub-niggurath.zerotier.com - Amsterdam, Netherlands
  52. addrs.clear();
  53. if (!id.fromString("48099ecd05:1:AwHO7o1FdDj1nEArfchTDa6EG7Eh2GLdiH86BhcoNv0BHJN4tmrf0Y7/2SZiQFpTTwJf93iph84Dci5+k52u/qkHTQ==:QgGbir8CNxBFFPPj8Eo3Bnp2UmbnZxu/pOq3Ke0WaLBBhHzVuwM+88g7CaDxbZ0AY2VkFc9hmE3VG+xi7g0H86yfVUIBHZnb7N+DCtf8/mphZIHNgmasakRi4hU11kGyLi1nTVTnrmCfAb7w+8SCp64Q5RNvBC/Pvz7pxSwSdjIHkVqRaeo="))
  54. throw std::runtime_error("invalid identity in Defaults");
  55. addrs.push_back(InetAddress("198.211.127.172",ZT_DEFAULT_UDP_PORT));
  56. sn[id] = addrs;
  57. return sn;
  58. }
  59. Defaults::Defaults()
  60. throw(std::runtime_error) :
  61. supernodes(_mkSupernodeMap())
  62. {
  63. }
  64. } // namespace ZeroTier