ZeroTierOne/node
2014-01-29 09:58:17 -08:00
..
Address.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Array.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
AtomicCounter.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
BandwidthAccount.hpp Windows build fixes. 2014-01-17 17:09:59 -08:00
Buffer.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
C25519.cpp Remove VC++ warnings in C25519, also add inline to short methods. 2014-01-18 09:44:35 -08:00
C25519.hpp Several things: 2014-01-21 13:07:22 -08:00
CertificateOfMembership.cpp Several things: 2014-01-21 13:07:22 -08:00
CertificateOfMembership.hpp Several things: 2014-01-21 13:07:22 -08:00
CMWC4096.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Condition.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Constants.hpp Windows build fixes. 2014-01-17 17:09:59 -08:00
Defaults.cpp Windows build fixes and installer work... 2014-01-20 16:16:01 -08:00
Defaults.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
Demarc.cpp Clean up some stuff, including a few spots where exceptions were not being handled correctly. 2013-10-18 14:16:53 -04:00
Demarc.hpp Fix for GitHub issue #20 (untested) 2013-12-24 10:39:29 -08:00
Dictionary.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
EthernetTap.cpp Make EthernetTap creation occur in a background thread in Network since it's a time consuming operation on Windows. This fixes one of the last remaining Windows problems. 2014-01-27 23:13:36 -08:00
EthernetTap.hpp Make EthernetTap creation occur in a background thread in Network since it's a time consuming operation on Windows. This fixes one of the last remaining Windows problems. 2014-01-27 23:13:36 -08:00
HttpClient.cpp Several things: 2014-01-21 13:07:22 -08:00
HttpClient.hpp HTTP client works! 2013-12-06 16:00:12 -08:00
Identity.cpp Several things: 2014-01-21 13:07:22 -08:00
Identity.hpp Several things: 2014-01-21 13:07:22 -08:00
InetAddress.cpp Some file format cleanup. 2013-09-17 15:46:56 -04:00
InetAddress.hpp Couple of Windows fixes, get rid of ips()/allIps() distinction in EthernetTap. (Will need to be fixed on Unix now... later.) 2014-01-23 14:15:00 -08:00
Logger.cpp ZeroTierOne for Windows binary project, builds and runs and mostly works but still some issues with tap. 2013-08-26 17:22:20 -04:00
Logger.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
MAC.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Multicaster.cpp Multicast propagation is now working from non-supernodes, and working quite well. Time for some more simulation before 0.5.0! 2013-10-02 13:50:42 -04:00
Multicaster.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
MulticastGroup.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Mutex.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Network.cpp Fix a couple compile items. 2014-01-27 23:16:15 -08:00
Network.hpp Fix a couple compile items. 2014-01-27 23:16:15 -08:00
NetworkConfig.cpp More tying up of certificate of membership stuff in the client. 2013-10-24 16:57:26 -04:00
NetworkConfig.hpp Windows build fixes. 2014-01-17 17:09:59 -08:00
Node.cpp Yank RuntimeEnvironment from SysEnv. 2014-01-29 09:58:17 -08:00
Node.hpp Windows UI appearance fixes (font issue, etc.) and fix to WinSock init on GUI client. 2014-01-26 22:24:29 -08:00
NodeConfig.cpp Make EthernetTap creation occur in a background thread in Network since it's a time consuming operation on Windows. This fixes one of the last remaining Windows problems. 2014-01-27 23:13:36 -08:00
NodeConfig.hpp Make EthernetTap creation occur in a background thread in Network since it's a time consuming operation on Windows. This fixes one of the last remaining Windows problems. 2014-01-27 23:13:36 -08:00
NonCopyable.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Packet.cpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
Packet.hpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
PacketDecoder.cpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
PacketDecoder.hpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
Peer.cpp VERSION 0.6.7: revert change for GitHub issue #20 2013-12-31 11:36:13 -08:00
Peer.hpp Fix for GitHub issue #35 and also possibly partial fix for #29 issues. 2014-01-28 16:12:24 -08:00
Poly1305.cpp Windows build fixes. 2014-01-17 17:09:59 -08:00
Poly1305.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
RuntimeEnvironment.hpp Rest of software updater, ready to test... 2013-12-10 15:30:53 -08:00
Salsa20.cpp 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. 2013-10-18 17:39:48 -04:00
Salsa20.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Service.cpp Move template parameter in Thread to a more logical scope location. 2013-08-08 09:19:36 -04:00
Service.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SHA512.cpp Hashcash-based identity, work in progress... committing to test speed on other boxes. 2013-10-05 06:00:47 -04:00
SHA512.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SharedPtr.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
SoftwareUpdater.cpp Several things: 2014-01-21 13:07:22 -08:00
SoftwareUpdater.hpp Refactor SoftwareUpdate to make .nfo parse and signature check code easily reusable so it can be used from the Qt GUI code. 2014-01-05 16:24:12 -08:00
Switch.cpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
Switch.hpp Yank PROBE stuff since it's not used and was a premature addition to the protocol. 2014-01-28 10:41:43 -08:00
SysEnv.cpp Yank RuntimeEnvironment from SysEnv. 2014-01-29 09:58:17 -08:00
SysEnv.hpp Yank RuntimeEnvironment from SysEnv. 2014-01-29 09:58:17 -08:00
Thread.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Topology.cpp Windows Installer work, fix 100% CPU bug in EthernetTap on Windows, Windows lockDownFile() implementation that uses 'cacls' utility. 2014-01-26 10:21:43 -08:00
Topology.hpp Fix for GitHub issue #35 and also possibly partial fix for #29 issues. 2014-01-28 16:12:24 -08:00
UdpSocket.cpp Tap now basically sorta works on Windows. Now have to figure out how to control DHCP behavior since we normally don't want that. 2013-08-27 11:15:14 -04:00
UdpSocket.hpp Dead code removal, fix for cleanup GitHub issue #28 2013-12-06 16:49:20 -08:00
Utils.cpp Windows Installer work, fix 100% CPU bug in EthernetTap on Windows, Windows lockDownFile() implementation that uses 'cacls' utility. 2014-01-26 10:21:43 -08:00
Utils.hpp Cleanup in Utils, fix for HttpClient on Linux. 2013-12-12 11:33:41 -08:00