Adam Ierymenko 99c5fae9da Make Service communicate via empty-line-delimited Dictionary objects instead of the old size prefix way. 11 anni fa
..
Address.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
AntiRecursion.hpp aee742e767 More toward GitHub issue #56 11 anni fa
Array.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
AtomicCounter.hpp 939cdc82a2 VERSION 0.7.1: small Linux compile fix on g++, does not merit new release 12 anni fa
BandwidthAccount.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Buffer.hpp 7831c4bfef Cleanup, dead code removal, some pretty insignificant security stuff that's based on recommendations. 11 anni fa
C25519.cpp 4d1cca1150 Remove VC++ warnings in C25519, also add inline to short methods. 12 anni fa
C25519.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
CMWC4096.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
CertificateOfMembership.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
CertificateOfMembership.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Constants.hpp 99c5fae9da Make Service communicate via empty-line-delimited Dictionary objects instead of the old size prefix way. 11 anni fa
Defaults.cpp d187ec82d4 Adding supernode yig.zerotier.com (Sydney, Australia) and removing mi-go.zerotier.com (Singapore) due to real-world usage data. 11 anni fa
Defaults.hpp aee742e767 More toward GitHub issue #56 11 anni fa
Dictionary.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
EthernetTap.hpp 6c60305a96 Split EthernetTap into subclasses, work in progress... 11 anni fa
HttpClient.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
HttpClient.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Identity.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Identity.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
InetAddress.cpp 2ac56fd120 Fix TCP connection accumulation problem, still having issues with TCP tunneling. 11 anni fa
InetAddress.hpp aee742e767 More toward GitHub issue #56 11 anni fa
IpcConnection.cpp 67a85221d5 WINDOWS IS SUFFERING 11 anni fa
IpcConnection.hpp 67a85221d5 WINDOWS IS SUFFERING 11 anni fa
IpcListener.cpp b1088a6bd7 Make Unix domain sockets mode 0777 so that properly authorized non-privileged users can access them (if they have auth token). 11 anni fa
IpcListener.hpp 67a85221d5 WINDOWS IS SUFFERING 11 anni fa
Logger.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Logger.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
MAC.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
MulticastGroup.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Multicaster.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Multicaster.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Mutex.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Network.cpp d9836adbf6 .... aaaaaand... GitHub issue #61 was caused by the fact that we were no longer deleting taps on Windows! 11 anni fa
Network.hpp ab5a460177 Apply multicast rate limits on a network to ourselves and do not send multicasts that would exceed limits, for GitHub issue #55 11 anni fa
NetworkConfig.cpp 1e6475fad6 Clean out unused netconf fields, rename a few, work on new netconf server. 11 anni fa
NetworkConfig.hpp 1e6475fad6 Clean out unused netconf fields, rename a few, work on new netconf server. 11 anni fa
Node.cpp aee742e767 More toward GitHub issue #56 11 anni fa
Node.hpp f0223490be Make GUI work with new control client API, make control client look for user authtoken.secret if system unreadable. 11 anni fa
NodeConfig.cpp c231510f8b More TCP-related fixes and tweaks to ping timing, resynchronize, and startup. 11 anni fa
NodeConfig.hpp acf7d70d24 Integrate IPC stuff into NodeConfig. 11 anni fa
NonCopyable.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Packet.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Packet.hpp aee742e767 More toward GitHub issue #56 11 anni fa
PacketDecoder.cpp b117ff5435 Probable fix for GitHub issue #63 - do not unite() if either path is TCP, since doing so can result in asymmetric failed NAT-t over UDP if one side has a firewall that permits outgoing UDP but not incoming. 11 anni fa
PacketDecoder.hpp abc82d6a52 IPC changes and SocketManager changes all build! 11 anni fa
Path.hpp 158002d2d1 Tweak some timings and stuff. 11 anni fa
Peer.cpp aee742e767 More toward GitHub issue #56 11 anni fa
Peer.hpp 7831c4bfef Cleanup, dead code removal, some pretty insignificant security stuff that's based on recommendations. 11 anni fa
Poly1305.cpp 07f505971c Windows build fixes. 12 anni fa
Poly1305.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
RuntimeEnvironment.hpp c9294c1a78 Prevent recursive transit of ZeroTier packets, toward GitHub issue #56 11 anni fa
SHA512.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
SHA512.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Salsa20.cpp 8c9b73f67b Make Salsa20 variable-round, allowing for Salsa20/12 to be used for Packet encrypt and decrypt. Profiling analysis found that Salsa20 encrypt was accounting for a nontrivial percentage of CPU time, so it makes sense to cut this load fundamentally. There are no published attacks against Salsa20/12, and DJB believes 20 rounds to be overkill. This should be more than enough for our needs. Obviously incorporating ASM Salsa20 is among the next steps for performance. 12 anni fa
Salsa20.hpp 612c17240a Dead code removal, fix for cleanup GitHub issue #28 12 anni fa
Service.cpp 99c5fae9da Make Service communicate via empty-line-delimited Dictionary objects instead of the old size prefix way. 11 anni fa
Service.hpp 99c5fae9da Make Service communicate via empty-line-delimited Dictionary objects instead of the old size prefix way. 11 anni fa
SharedPtr.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Socket.hpp b117ff5435 Probable fix for GitHub issue #63 - do not unite() if either path is TCP, since doing so can result in asymmetric failed NAT-t over UDP if one side has a firewall that permits outgoing UDP but not incoming. 11 anni fa
SocketManager.cpp aee742e767 More toward GitHub issue #56 11 anni fa
SocketManager.hpp f13493edb2 Oops... turns out we need to differentiate incoming from outgoing TCP and indeed learn incoming TCP paths. Otherwise the recipient of a TCP connection does not know to reply via TCP! Heh. 11 anni fa
SoftwareUpdater.cpp 60f25ccdf9 Some text changes, remove unused modules from installer project. 12 anni fa
SoftwareUpdater.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
Switch.cpp aee742e767 More toward GitHub issue #56 11 anni fa
Switch.hpp aee742e767 More toward GitHub issue #56 11 anni fa
SysEnv.cpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
SysEnv.hpp b5c3a92be2 Boring stuff: update dates in copyrights across all files. 12 anni fa
TcpSocket.cpp 0e1fc06a6f The remove paths on send fail thing in Peer.cpp was not well thought out, and there is no point in mallocing the TCP write buffer. 11 anni fa
TcpSocket.hpp 0e1fc06a6f The remove paths on send fail thing in Peer.cpp was not well thought out, and there is no point in mallocing the TCP write buffer. 11 anni fa
Thread.hpp 67a85221d5 WINDOWS IS SUFFERING 11 anni fa
Topology.cpp 7831c4bfef Cleanup, dead code removal, some pretty insignificant security stuff that's based on recommendations. 11 anni fa
Topology.hpp 8fb442d81a Yet more cleanup to TCP logic, this time adding a master switch and adding UDP preference in send(). 11 anni fa
UdpSocket.cpp fe85426df6 A few more tweaks to TCP failover... seems to be switching back and forth pretty well now! 11 anni fa
UdpSocket.hpp 1a0a6755b1 UDP socket implementation. 11 anni fa
UnixEthernetTap.cpp 420edf23ad Was not closing _shutdownSignalPipe in UnixEthernetTap either... 11 anni fa
UnixEthernetTap.hpp 6c60305a96 Split EthernetTap into subclasses, work in progress... 11 anni fa
Utils.cpp 7831c4bfef Cleanup, dead code removal, some pretty insignificant security stuff that's based on recommendations. 11 anni fa
Utils.hpp 7831c4bfef Cleanup, dead code removal, some pretty insignificant security stuff that's based on recommendations. 11 anni fa
WindowsEthernetTap.cpp 48a1799f49 More Windows tap cleanup... seems solid. We'll see. 11 anni fa
WindowsEthernetTap.hpp bf24de43fe Windows tap: be REAL REAL REAL PARANOID. Wake up sheeple. 11 anni fa