ZeroTierOne/node
2021-05-25 14:49:06 -04:00
..
Address.hpp
AES.cpp
AES.hpp
AES_aesni.cpp
AES_armcrypto.cpp
AtomicCounter.hpp
Bond.cpp Fix (some) compile-time warnings on Windows 2021-05-03 21:12:45 -07:00
Bond.hpp Fix (some) compile-time warnings on Windows 2021-05-03 21:12:45 -07:00
BondController.cpp Match formatting of Bond-related sources to ZeroTier standard (no functional changes) 2021-05-03 17:59:31 -07:00
BondController.hpp Match formatting of Bond-related sources to ZeroTier standard (no functional changes) 2021-05-03 17:59:31 -07:00
Buffer.hpp
C25519.cpp
C25519.hpp
Capability.cpp
Capability.hpp
CertificateOfMembership.cpp
CertificateOfMembership.hpp
CertificateOfOwnership.cpp
CertificateOfOwnership.hpp
Constants.hpp
Credential.hpp
Dictionary.hpp
DNS.hpp
Flow.hpp Match formatting of Bond-related sources to ZeroTier standard (no functional changes) 2021-05-03 17:59:31 -07:00
Hashtable.hpp
Identity.cpp
Identity.hpp
IncomingPacket.cpp Fix reporting of status. 2021-05-25 14:45:49 -04:00
IncomingPacket.hpp
InetAddress.cpp
InetAddress.hpp
MAC.hpp
Membership.cpp
Membership.hpp
Multicaster.cpp
Multicaster.hpp
MulticastGroup.hpp
Mutex.hpp
Network.cpp Fix authentication URL... 2021-05-25 14:49:06 -04:00
Network.hpp Fix authentication URL... 2021-05-25 14:49:06 -04:00
NetworkConfig.cpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
NetworkConfig.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
NetworkController.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
Node.cpp Fix a few things... 2021-05-25 14:40:40 -04:00
Node.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
OutboundMulticast.cpp
OutboundMulticast.hpp
Packet.cpp
Packet.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
Path.cpp
Path.hpp
Peer.cpp Crash fix 2021-02-03 18:56:07 -05:00
Peer.hpp Lets try always supplying the AES keys to Packet dearmor() and see if that prevents the coma problem. 2021-02-13 00:01:49 -05:00
Poly1305.cpp
Poly1305.hpp
README.md
Revocation.cpp
Revocation.hpp
RingBuffer.hpp
RuntimeEnvironment.hpp
Salsa20.cpp
Salsa20.hpp
SelfAwareness.cpp
SelfAwareness.hpp
SHA512.cpp
SHA512.hpp
SharedPtr.hpp
Switch.cpp Fix (some) compile-time warnings on Linux 2021-05-03 19:35:28 -07:00
Switch.hpp
Tag.cpp
Tag.hpp
Topology.cpp Update hard-coded default planet to latest. 2021-04-14 12:25:35 -04:00
Topology.hpp
Trace.cpp Fix erroneous cast of verb to double that causes invalid tracing output 2021-05-04 08:59:52 -07:00
Trace.hpp
Utils.cpp yes 2021-04-13 16:12:11 +00:00
Utils.hpp
World.hpp

ZeroTier Network Hypervisor Core

This directory contains the real ZeroTier: a completely OS-independent global virtual Ethernet switch engine. This is where the magic happens.

Give it wire packets and it gives you Ethernet packets, and vice versa. The core contains absolutely no actual I/O, port configuration, or other OS-specific code (except Utils::getSecureRandom()). It provides a simple C API via /include/ZeroTierOne.h. It's designed to be small and maximally portable for future use on small embedded and special purpose systems.

Code in here follows these guidelines:

  • Keep it minimal, especially in terms of code footprint and memory use.
  • There should be no OS-dependent code here unless absolutely necessary (e.g. getSecureRandom).
  • If it's not part of the core virtual Ethernet switch it does not belong here.
  • No C++11 or C++14 since older and embedded compilers don't support it yet and this should be maximally portable.
  • Minimize the use of complex C++ features since at some point we might end up "minus-minus'ing" this code if doing so proves necessary to port to tiny embedded systems.