Browse Source

Updated licenses for 2019

pull/1/head
Joseph Henry 7 years ago
parent
commit
0e597191b8
  1. 10
      controller/DB.cpp
  2. 10
      controller/DB.hpp
  3. 10
      controller/EmbeddedNetworkController.cpp
  4. 10
      controller/EmbeddedNetworkController.hpp
  5. 10
      controller/FileDB.cpp
  6. 10
      controller/FileDB.hpp
  7. 10
      controller/PostgreSQL.cpp
  8. 10
      controller/PostgreSQL.hpp
  9. 2
      include/ZeroTierDebug.h
  10. 2
      include/ZeroTierOne.h
  11. 2
      node/Address.hpp
  12. 2
      node/AtomicCounter.hpp
  13. 2
      node/Buffer.hpp
  14. 2
      node/C25519.hpp
  15. 2
      node/Capability.cpp
  16. 2
      node/Capability.hpp
  17. 2
      node/CertificateOfMembership.cpp
  18. 2
      node/CertificateOfMembership.hpp
  19. 2
      node/CertificateOfOwnership.cpp
  20. 2
      node/CertificateOfOwnership.hpp
  21. 2
      node/Constants.hpp
  22. 2
      node/Credential.hpp
  23. 2
      node/Dictionary.hpp
  24. 2
      node/Hashtable.hpp
  25. 2
      node/Identity.cpp
  26. 2
      node/Identity.hpp
  27. 2
      node/IncomingPacket.cpp
  28. 2
      node/IncomingPacket.hpp
  29. 2
      node/InetAddress.cpp
  30. 2
      node/InetAddress.hpp
  31. 2
      node/MAC.hpp
  32. 2
      node/Membership.cpp
  33. 2
      node/Membership.hpp
  34. 2
      node/MulticastGroup.hpp
  35. 2
      node/Multicaster.cpp
  36. 2
      node/Multicaster.hpp
  37. 2
      node/Mutex.hpp
  38. 2
      node/Network.cpp
  39. 2
      node/Network.hpp
  40. 2
      node/NetworkConfig.cpp
  41. 2
      node/NetworkConfig.hpp
  42. 2
      node/NetworkController.hpp
  43. 2
      node/Node.cpp
  44. 2
      node/Node.hpp
  45. 2
      node/OutboundMulticast.cpp
  46. 2
      node/OutboundMulticast.hpp
  47. 2
      node/Packet.cpp
  48. 2
      node/Packet.hpp
  49. 2
      node/Path.cpp
  50. 2
      node/Path.hpp
  51. 2
      node/Peer.cpp
  52. 2
      node/Peer.hpp
  53. 2
      node/Poly1305.hpp
  54. 2
      node/Revocation.cpp
  55. 2
      node/Revocation.hpp
  56. 2
      node/RingBuffer.hpp
  57. 2
      node/RuntimeEnvironment.hpp
  58. 2
      node/SHA512.hpp
  59. 2
      node/SelfAwareness.cpp
  60. 2
      node/SelfAwareness.hpp
  61. 2
      node/SharedPtr.hpp
  62. 2
      node/Switch.cpp
  63. 2
      node/Switch.hpp
  64. 2
      node/Tag.cpp
  65. 2
      node/Tag.hpp
  66. 2
      node/Topology.cpp
  67. 2
      node/Topology.hpp
  68. 2
      node/Trace.cpp
  69. 2
      node/Trace.hpp
  70. 2
      node/Utils.cpp
  71. 2
      node/Utils.hpp
  72. 2
      node/World.hpp
  73. 2
      one.cpp
  74. 2
      osdep/Arp.cpp
  75. 2
      osdep/Arp.hpp
  76. 2
      osdep/BSDEthernetTap.cpp
  77. 2
      osdep/BSDEthernetTap.hpp
  78. 2
      osdep/Binder.hpp
  79. 2
      osdep/BlockingQueue.hpp
  80. 2
      osdep/Http.cpp
  81. 2
      osdep/Http.hpp
  82. 2
      osdep/LinuxEthernetTap.cpp
  83. 2
      osdep/LinuxEthernetTap.hpp
  84. 2
      osdep/LinuxNetLink.cpp
  85. 2
      osdep/LinuxNetLink.hpp
  86. 2
      osdep/MacEthernetTap.cpp
  87. 2
      osdep/MacEthernetTap.hpp
  88. 2
      osdep/MacEthernetTapAgent.c
  89. 2
      osdep/MacEthernetTapAgent.h
  90. 2
      osdep/ManagedRoute.cpp
  91. 2
      osdep/ManagedRoute.hpp
  92. 2
      osdep/NeighborDiscovery.cpp
  93. 2
      osdep/NeighborDiscovery.hpp
  94. 10
      osdep/NetBSDEthernetTap.cpp
  95. 10
      osdep/NetBSDEthernetTap.hpp
  96. 2
      osdep/OSUtils.cpp
  97. 2
      osdep/OSUtils.hpp
  98. 2
      osdep/Phy.hpp
  99. 2
      osdep/PortMapper.cpp
  100. 2
      osdep/PortMapper.hpp
  101. Some files were not shown because too many files have changed in this diff Show More

10
controller/DB.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#include "DB.hpp" #include "DB.hpp"

10
controller/DB.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifndef ZT_CONTROLLER_DB_HPP #ifndef ZT_CONTROLLER_DB_HPP

10
controller/EmbeddedNetworkController.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#include <stdint.h> #include <stdint.h>

10
controller/EmbeddedNetworkController.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifndef ZT_SQLITENETWORKCONTROLLER_HPP #ifndef ZT_SQLITENETWORKCONTROLLER_HPP

10
controller/FileDB.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#include "FileDB.hpp" #include "FileDB.hpp"

10
controller/FileDB.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifndef ZT_CONTROLLER_FILEDB_HPP #ifndef ZT_CONTROLLER_FILEDB_HPP

10
controller/PostgreSQL.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifdef ZT_CONTROLLER_USE_LIBPQ #ifdef ZT_CONTROLLER_USE_LIBPQ

10
controller/PostgreSQL.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifdef ZT_CONTROLLER_USE_LIBPQ #ifdef ZT_CONTROLLER_USE_LIBPQ

2
include/ZeroTierDebug.h

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
include/ZeroTierOne.h

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Address.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/AtomicCounter.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Buffer.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/C25519.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Capability.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Capability.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/CertificateOfMembership.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/CertificateOfMembership.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/CertificateOfOwnership.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/CertificateOfOwnership.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Constants.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Credential.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Dictionary.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Hashtable.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Identity.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Identity.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/IncomingPacket.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/IncomingPacket.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/InetAddress.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/InetAddress.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/MAC.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Membership.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Membership.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/MulticastGroup.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Multicaster.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Multicaster.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Mutex.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Network.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Network.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/NetworkConfig.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/NetworkConfig.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/NetworkController.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Node.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Node.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/OutboundMulticast.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/OutboundMulticast.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Packet.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Packet.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Path.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Path.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Peer.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Peer.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Poly1305.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Revocation.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Revocation.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/RingBuffer.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/RuntimeEnvironment.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/SHA512.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/SelfAwareness.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/SelfAwareness.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/SharedPtr.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Switch.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Switch.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Tag.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Tag.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Topology.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Topology.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Trace.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Trace.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Utils.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/Utils.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
node/World.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
one.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Arp.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Arp.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/BSDEthernetTap.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/BSDEthernetTap.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Binder.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/BlockingQueue.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Http.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Http.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/LinuxEthernetTap.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/LinuxEthernetTap.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/LinuxNetLink.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/LinuxNetLink.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/MacEthernetTap.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/MacEthernetTap.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/MacEthernetTapAgent.c

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/MacEthernetTapAgent.h

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/ManagedRoute.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/ManagedRoute.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/NeighborDiscovery.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/NeighborDiscovery.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

10
osdep/NetBSDEthernetTap.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#include <stdint.h> #include <stdint.h>

10
osdep/NetBSDEthernetTap.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -14,6 +14,14 @@
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial closed-source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application.
*/ */
#ifndef ZT_NetBSDEthernetTap_HPP #ifndef ZT_NetBSDEthernetTap_HPP

2
osdep/OSUtils.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/OSUtils.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/Phy.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/PortMapper.cpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

2
osdep/PortMapper.hpp

@ -1,6 +1,6 @@
/* /*
* ZeroTier One - Network Virtualization Everywhere * ZeroTier One - Network Virtualization Everywhere
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/ * Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save