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 d724af6a99 Replace Sao Paolo root with Buenos Aires in default planet def (will push to network too) 8 years ago
..
Address.hpp Copyright updates for 2018. 8 years ago
AtomicCounter.hpp A little more cleanup. 8 years ago
Buffer.hpp Copyright updates for 2018. 8 years ago
C25519.cpp Use X64 ASM ed25519 signatures on Linux/x64, which are about 10X faster. Will matter a lot for network controllers, not so much for other things. 8 years ago
C25519.hpp Clean up some old stuff. 8 years ago
Capability.cpp Copyright updates for 2018. 8 years ago
Capability.hpp Copyright updates for 2018. 8 years ago
CertificateOfMembership.cpp Clean up some old stuff. 8 years ago
CertificateOfMembership.hpp Clean up some old stuff. 8 years ago
CertificateOfOwnership.cpp Copyright updates for 2018. 8 years ago
CertificateOfOwnership.hpp Copyright updates for 2018. 8 years ago
Constants.hpp Added TX queue cap for issue #769 8 years ago
Credential.hpp Copyright updates for 2018. 8 years ago
Dictionary.hpp A few fixes dicatated by valgrind. 8 years ago
Hashtable.hpp Fix build on Intel C/C++ Compiler for Linux. 8 years ago
Identity.cpp Clean up some old stuff. 8 years ago
Identity.hpp Clean up some old stuff. 8 years ago
IncomingPacket.cpp Tie up the rest of hub and spoke designated replicator multicast mode. 8 years ago
IncomingPacket.hpp Copyright updates for 2018. 8 years ago
InetAddress.cpp GitHub issue #675 8 years ago
InetAddress.hpp GitHub issue #675 8 years ago
MAC.hpp Copyright updates for 2018. 8 years ago
Membership.cpp Copyright updates for 2018. 8 years ago
Membership.hpp Copyright updates for 2018. 8 years ago
MulticastGroup.hpp Copyright updates for 2018. 8 years ago
Multicaster.cpp Tie up the rest of hub and spoke designated replicator multicast mode. 8 years ago
Multicaster.hpp Add support for designated multicast replicators to Multicaster::send(). 8 years ago
Mutex.hpp More cleanup of old stuff. 8 years ago
Network.cpp Add specification of anchor and multicast hub address (optional) to new multicast and IPv4 enabled ad-hoc network ID format. 8 years ago
Network.hpp More cleanup of old stuff. 8 years ago
NetworkConfig.cpp Tie up the rest of hub and spoke designated replicator multicast mode. 8 years ago
NetworkConfig.hpp Tie up the rest of hub and spoke designated replicator multicast mode. 8 years ago
NetworkController.hpp Copyright updates for 2018. 8 years ago
Node.cpp More work on GitHub issue #666 8 years ago
Node.hpp Fixes for lock ordering -- GitHub issue #573 8 years ago
OutboundMulticast.cpp Copyright updates for 2018. 8 years ago
OutboundMulticast.hpp Do not send to origin in second buffered multicast path. 8 years ago
Packet.cpp node: remove deprecated register hint for C++17 compatibility 8 years ago
Packet.hpp Tie up the rest of hub and spoke designated replicator multicast mode. 8 years ago
Path.cpp Copyright updates for 2018. 8 years ago
Path.hpp Fix build on Intel C/C++ Compiler for Linux. 8 years ago
Peer.cpp Copyright updates for 2018. 8 years ago
Peer.hpp More cleanup of old stuff. 8 years ago
Poly1305.cpp Minor cleanup. 9 years ago
Poly1305.hpp Copyright updates for 2018. 8 years ago
README.md Actual documentation. 9 years ago
Revocation.cpp Copyright updates for 2018. 8 years ago
Revocation.hpp Copyright updates for 2018. 8 years ago
RuntimeEnvironment.hpp A small memory use reduction. 8 years ago
SHA512.cpp Use X64 ASM ed25519 signatures on Linux/x64, which are about 10X faster. Will matter a lot for network controllers, not so much for other things. 8 years ago
SHA512.hpp Copyright updates for 2018. 8 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 Copyright updates for 2018. 8 years ago
SelfAwareness.hpp Copyright updates for 2018. 8 years ago
SharedPtr.hpp Refactor some potentially unsafe SharedPtr<> code. 8 years ago
Switch.cpp Fix a bug that caused a crash on empty HTTP requests (localhost only) and add a lightweight lock to the RX queue to prevent possible threads stepping on each other in parallel receive paths. 8 years ago
Switch.hpp Fix a bug that caused a crash on empty HTTP requests (localhost only) and add a lightweight lock to the RX queue to prevent possible threads stepping on each other in parallel receive paths. 8 years ago
Tag.cpp Copyright updates for 2018. 8 years ago
Tag.hpp Copyright updates for 2018. 8 years ago
Topology.cpp Replace Sao Paolo root with Buenos Aires in default planet def (will push to network too) 8 years ago
Topology.hpp Refactor some potentially unsafe SharedPtr<> code. 8 years ago
Trace.cpp Linux build fix on some versions. 8 years ago
Trace.hpp Fix compilation on Windows 8 years ago
Utils.cpp Copyright updates for 2018. 8 years ago
Utils.hpp Fix build on Intel C/C++ Compiler for Linux. 8 years ago
World.hpp Clean up some old stuff. 8 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.