You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Adam Ierymenko f9a9c2d009 Config object was never even being initialized on leave. Never noticed since desktop and server clients did not use. 9 years ago
..
Address.hpp License header update. 9 years ago
Array.hpp License header update. 9 years ago
AtomicCounter.hpp License header update. 9 years ago
Buffer.hpp Add branch hints to bounds checking in Buffer. 9 years ago
C25519.cpp License header update. 9 years ago
C25519.hpp License header update. 9 years ago
Capability.cpp License header update. 9 years ago
Capability.hpp License header update. 9 years ago
CertificateOfMembership.cpp License header update. 9 years ago
CertificateOfMembership.hpp License header update. 9 years ago
CertificateOfOwnership.cpp License header update. 9 years ago
CertificateOfOwnership.hpp License header update. 9 years ago
CertificateOfRepresentation.hpp License header update. 9 years ago
Cluster.cpp Cluster build fix. 9 years ago
Cluster.hpp License header update. 9 years ago
Constants.hpp define likely/unlikely 9 years ago
Credential.hpp License header update. 9 years ago
Dictionary.hpp Finish removing constantly changing stuff from controller. 9 years ago
Hashtable.hpp License header update. 9 years ago
Identity.cpp License header update. 9 years ago
Identity.hpp License header update. 9 years ago
IncomingPacket.cpp Adjust PUSH_DIRECT_PATH circuit breaker, and comment out traces to reduce noise. 9 years ago
IncomingPacket.hpp License header update. 9 years ago
InetAddress.cpp added isEqualPrefix to InetAddress 9 years ago
InetAddress.hpp added isEqualPrefix to InetAddress 9 years ago
MAC.hpp License header update. 9 years ago
Membership.cpp License header update. 9 years ago
Membership.hpp License header update. 9 years ago
MulticastGroup.hpp License header update. 9 years ago
Multicaster.cpp License header update. 9 years ago
Multicaster.hpp License header update. 9 years ago
Mutex.hpp License header update. 9 years ago
Network.cpp First pass of configurable MTU and max MTU increase. 9 years ago
Network.hpp License header update. 9 years ago
NetworkConfig.cpp First pass of configurable MTU and max MTU increase. 9 years ago
NetworkConfig.hpp First pass of configurable MTU and max MTU increase. 9 years ago
NetworkController.hpp License header update. 9 years ago
Node.cpp Config object was never even being initialized on leave. Never noticed since desktop and server clients did not use. 9 years ago
Node.hpp License header update. 9 years ago
NonCopyable.hpp License header update. 9 years ago
OutboundMulticast.cpp License header update. 9 years ago
OutboundMulticast.hpp License header update. 9 years ago
Packet.cpp define likely/unlikely 9 years ago
Packet.hpp License header update. 9 years ago
Path.cpp License header update. 9 years ago
Path.hpp License header update. 9 years ago
Peer.cpp License header update. 9 years ago
Peer.hpp License header update. 9 years ago
Poly1305.cpp Windows profile build target (CPU profiling), and a little bit of optimization revealed by such. 9 years ago
Poly1305.hpp License header update. 9 years ago
README.md Actual documentation. 9 years ago
Revocation.cpp License header update. 9 years ago
Revocation.hpp License header update. 9 years ago
RuntimeEnvironment.hpp License header update. 9 years ago
SHA512.cpp License header update. 9 years ago
SHA512.hpp License header update. 9 years ago
Salsa20.cpp Some code cleanup and make sure any type punning is guarded with ZT_NO_TYPE_PUNNING. 9 years ago
Salsa20.hpp Another very small crypto optimization. 9 years ago
SelfAwareness.cpp License header update. 9 years ago
SelfAwareness.hpp License header update. 9 years ago
SharedPtr.hpp License header update. 9 years ago
Switch.cpp License header update. 9 years ago
Switch.hpp License header update. 9 years ago
Tag.cpp License header update. 9 years ago
Tag.hpp License header update. 9 years ago
Topology.cpp License header update. 9 years ago
Topology.hpp License header update. 9 years ago
Utils.cpp License header update. 9 years ago
Utils.hpp License header update. 9 years ago
World.hpp License header update. 9 years ago

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.