Adam Ierymenko f9a9c2d009 Config object was never even being initialized on leave. Never noticed since desktop and server clients did not use. 8 年之前
..
Address.hpp 1b68d6dbdc License header update. 8 年之前
Array.hpp 1b68d6dbdc License header update. 8 年之前
AtomicCounter.hpp 1b68d6dbdc License header update. 8 年之前
Buffer.hpp 2d74c60d47 Add branch hints to bounds checking in Buffer. 8 年之前
C25519.cpp 1b68d6dbdc License header update. 8 年之前
C25519.hpp 1b68d6dbdc License header update. 8 年之前
Capability.cpp 1b68d6dbdc License header update. 8 年之前
Capability.hpp 1b68d6dbdc License header update. 8 年之前
CertificateOfMembership.cpp 1b68d6dbdc License header update. 8 年之前
CertificateOfMembership.hpp 1b68d6dbdc License header update. 8 年之前
CertificateOfOwnership.cpp 1b68d6dbdc License header update. 8 年之前
CertificateOfOwnership.hpp 1b68d6dbdc License header update. 8 年之前
CertificateOfRepresentation.hpp 1b68d6dbdc License header update. 8 年之前
Cluster.cpp 5e6a2a17b0 Cluster build fix. 8 年之前
Cluster.hpp 1b68d6dbdc License header update. 8 年之前
Constants.hpp f479b76772 define likely/unlikely 8 年之前
Credential.hpp 1b68d6dbdc License header update. 8 年之前
Dictionary.hpp 718e1d6c08 Finish removing constantly changing stuff from controller. 8 年之前
Hashtable.hpp 1b68d6dbdc License header update. 8 年之前
Identity.cpp 1b68d6dbdc License header update. 8 年之前
Identity.hpp 1b68d6dbdc License header update. 8 年之前
IncomingPacket.cpp b9c1407013 Adjust PUSH_DIRECT_PATH circuit breaker, and comment out traces to reduce noise. 8 年之前
IncomingPacket.hpp 1b68d6dbdc License header update. 8 年之前
InetAddress.cpp ceeb8ee0bc added isEqualPrefix to InetAddress 8 年之前
InetAddress.hpp ceeb8ee0bc added isEqualPrefix to InetAddress 8 年之前
MAC.hpp 1b68d6dbdc License header update. 8 年之前
Membership.cpp 1b68d6dbdc License header update. 8 年之前
Membership.hpp 1b68d6dbdc License header update. 8 年之前
MulticastGroup.hpp 1b68d6dbdc License header update. 8 年之前
Multicaster.cpp 1b68d6dbdc License header update. 8 年之前
Multicaster.hpp 1b68d6dbdc License header update. 8 年之前
Mutex.hpp 1b68d6dbdc License header update. 8 年之前
Network.cpp 107e3e4106 First pass of configurable MTU and max MTU increase. 8 年之前
Network.hpp 1b68d6dbdc License header update. 8 年之前
NetworkConfig.cpp 107e3e4106 First pass of configurable MTU and max MTU increase. 8 年之前
NetworkConfig.hpp 107e3e4106 First pass of configurable MTU and max MTU increase. 8 年之前
NetworkController.hpp 1b68d6dbdc License header update. 8 年之前
Node.cpp f9a9c2d009 Config object was never even being initialized on leave. Never noticed since desktop and server clients did not use. 8 年之前
Node.hpp 1b68d6dbdc License header update. 8 年之前
NonCopyable.hpp 1b68d6dbdc License header update. 8 年之前
OutboundMulticast.cpp 1b68d6dbdc License header update. 8 年之前
OutboundMulticast.hpp 1b68d6dbdc License header update. 8 年之前
Packet.cpp f479b76772 define likely/unlikely 8 年之前
Packet.hpp 1b68d6dbdc License header update. 8 年之前
Path.cpp 1b68d6dbdc License header update. 8 年之前
Path.hpp 1b68d6dbdc License header update. 8 年之前
Peer.cpp 1b68d6dbdc License header update. 8 年之前
Peer.hpp 1b68d6dbdc License header update. 8 年之前
Poly1305.cpp d8f5cfdee4 Windows profile build target (CPU profiling), and a little bit of optimization revealed by such. 8 年之前
Poly1305.hpp 1b68d6dbdc License header update. 8 年之前
README.md 8a2ff0b31e Actual documentation. 9 年之前
Revocation.cpp 1b68d6dbdc License header update. 8 年之前
Revocation.hpp 1b68d6dbdc License header update. 8 年之前
RuntimeEnvironment.hpp 1b68d6dbdc License header update. 8 年之前
SHA512.cpp 1b68d6dbdc License header update. 8 年之前
SHA512.hpp 1b68d6dbdc License header update. 8 年之前
Salsa20.cpp a8ced184dc Some code cleanup and make sure any type punning is guarded with ZT_NO_TYPE_PUNNING. 8 年之前
Salsa20.hpp 41c187ba12 Another very small crypto optimization. 8 年之前
SelfAwareness.cpp 1b68d6dbdc License header update. 8 年之前
SelfAwareness.hpp 1b68d6dbdc License header update. 8 年之前
SharedPtr.hpp 1b68d6dbdc License header update. 8 年之前
Switch.cpp 1b68d6dbdc License header update. 8 年之前
Switch.hpp 1b68d6dbdc License header update. 8 年之前
Tag.cpp 1b68d6dbdc License header update. 8 年之前
Tag.hpp 1b68d6dbdc License header update. 8 年之前
Topology.cpp 1b68d6dbdc License header update. 8 年之前
Topology.hpp 1b68d6dbdc License header update. 8 年之前
Utils.cpp 1b68d6dbdc License header update. 8 年之前
Utils.hpp 1b68d6dbdc License header update. 8 年之前
World.hpp 1b68d6dbdc License header update. 8 年之前

README.md

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.