summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-06Plumbing for local interface addresses -- GitHub issue #180Adam Ierymenko
2015-07-06Almost everything for GitHub issue #180 except direct path map setup.Adam Ierymenko
2015-07-06Almost all of GitHub issue #180Adam Ierymenko
2015-07-06Check Network::isAllowed() always on multicast send.Adam Ierymenko
2015-07-06pushDirectPaths() implementationAdam Ierymenko
2015-07-06Some cleanup, docs, and Path -> Path > RemotePath refactor.Adam Ierymenko
2015-07-06For curiosity add Salsa20/8 to benchmarks.Adam Ierymenko
2015-07-06Include COM with EXT_FRAME in bridged case.Adam Ierymenko
2015-07-06Kill debug line.Adam Ierymenko
2015-07-06docsAdam Ierymenko
2015-07-06Documentation in Packet, more work on path push, and clean up ancient legacy ↵Adam Ierymenko
support code in Switch.
2015-07-06Merge pull request #203 from mwarning/loadlibsAdam Ierymenko
rename LIBS to LDLIBS and make it accessible from outside
2015-07-06rename LIBS to LDLIBS and make it accessible from outsideMoritz Warning
2015-07-03Merge pull request #202 from mwarning/openwrtAdam Ierymenko
allow environment variables to set/extend build variables
2015-07-03allow environment variables to set/extend CC, CXX, CFLAGS and LDFLAGSMoritz Warning
2015-07-02GitHub issue #171 -- separate CFLAGS and CXXFLAGS in Linux makefileAdam Ierymenko
2015-07-02Revert slow non-SSE Salsa20 modification since it did not fix Android/ARM ↵Adam Ierymenko
issue. Also update Salsa20 comments and clean up a bit.
2015-07-01For @glimberg -- a *possible* fix to the alignment headaches on Android/ARM. ↵Adam Ierymenko
If this works we should find a define that can be used to enable it there since it will slow things down on non-x86 other architectures.
2015-06-29Rename VERB_CMA to the more descriptive VERB_PHYSICAL_ADDRESS_PUSHAdam Ierymenko
2015-06-29ipLocalRoutes now exposed via network objects in JSON controller API, and ↵Adam Ierymenko
documentation changes.
2015-06-29Untested -- modifications to support IP ranges instead of ip/mask for IP ↵Adam Ierymenko
assignment pools, also add portId to Rule for future use.
2015-06-29(1) Both nodeId and portId in Rule can be NULL, (2) remove on delete cascade ↵Adam Ierymenko
since rules should never mysteriously disappear from the rules table. If it let you delete a node with rules, that would be a UI or cleanup function bug.
2015-06-29DB schema changes: separate portId in rules, ranges in IP assignment pools. ↵Adam Ierymenko
(No code changes yet so code is broken.)
2015-06-29Fix semantics of std::unique() to actually remove duplicates (hidden memory ↵Adam Ierymenko
leak?)
2015-06-26Put multicast txQueue back to list.Adam Ierymenko
2015-06-26Add Kees Bos to AUTHORS :)Adam Ierymenko
2015-06-26Merge pull request #196 from keesbos/fixesAdam Ierymenko
Fixes for controller
2015-06-26GitHub issue #191 - kill intra-network multicast rate limits (which were not ↵Adam Ierymenko
well supported or easily configurable anyway) -- this is really left over from the old collaborative multicast propagation algorithm. New algorithm (in for a while) has been sender-side replication in which sender "pays" all bandwidth, which intrinsically limits multicast.
2015-06-26Redo conversion of _networks to a vector. Just use a simple linear search ↵Adam Ierymenko
and put the nwid in a pair with the pointer so linear search can be done without pointer chasing. This should be the fastest option for anything less than dozens of networks, and should save memory over the old map.
2015-06-26Fix reporting of ipAssignments for ipv4Kees Bos
2015-06-26Fix cert verification check for self signed signaturesKees Bos
2015-06-23Merge pull request #192 from mwarning/replace_eraseAdam Ierymenko
replace vector::erase, was missed in a previous commit (ref #186)
2015-06-23replace vector::erase, was missed in a previous commit (ref #186)Moritz Warning
2015-06-22Merge branch '_networks_vector' of https://github.com/mwarning/ZeroTierOne ↵Adam Ierymenko
into adamierymenko-dev
2015-06-22Merge pull request #189 from keesbos/bugfix-auth-memberAdam Ierymenko
Fixed member authorization bug and minor cleanup
2015-06-20use _network function to reduce source code complexityMoritz Warning
2015-06-20replace _networks map by vectorMoritz Warning
_networks is usually quite small, using binary search on a vector might be faster comapred to std::map. This is especially true when using uClibc++, which uses a list.
2015-06-19Fixed member authorization bug and minor cleanupKees Bos
2015-06-19Root server terminology cleanup, and tighten up a security check by checking ↵Adam Ierymenko
full identity of peers instead of just address.
2015-06-19Rebuild properly signed root topology after supernode -> rootserver name change.Adam Ierymenko
2015-06-19Merge pull request #187 from keesbos/fix-ipv4-assignmentAdam Ierymenko
Fix for ipv4 assignment
2015-06-18Merge pull request #186 from mwarning/txQueue_vectorAdam Ierymenko
replace txQueue list by vector for faster memory access and less allo…
2015-06-19replace txQueue list by vector for faster memory access and less allocationsMoritz Warning
2015-06-18Fix for ipv4 assignmentKees Bos
2015-06-18Move js/ to ZeroTierIntegrations project.Adam Ierymenko
2015-06-17Almost certain fix for GitHub issue #184 on -devAdam Ierymenko
2015-06-16Merge pull request #182 from keesbos/rootserverAdam Ierymenko
Renamed supernode to rootserver
2015-06-16Merge pull request #181 from keesbos/bugfixAdam Ierymenko
Bugfixes
2015-06-15Fix 404 on creation of new networkKees Bos
2015-06-15Removed a superfluous cross joinKees Bos