Files
Chris Spiegel 45773f0b6e Ensure members in PacketMultiplexer are initialized
_enabled is set to true by setUpPostDecodeReceiveThreads(), so disabled
until then, but the constructor wasn't initializing it. _concurrency is
not being used before being set but for safety's sake, ensure it has a
starting value as well.

Also, remove the vestigial _rxThreadCount, which is no longer used.
2025-11-03 11:20:01 -08:00
..
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-07-03 12:02:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-07-03 12:02:18 -04:00
2025-08-06 12:10:18 -04:00
2017-02-03 19:47:00 -08:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-07-03 12:02:18 -04:00
2025-07-03 12:02:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-07-03 12:02:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00
2025-08-06 12:10:18 -04:00

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.