Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-07 | Save a little bit of RAM by getting rid of overkill CMWC4096 non-crypto PRNG ↵ | Adam Ierymenko | |
and replacing it with a simple non-crypto PRNG that just uses Salsa20. | |||
2015-07-07 | etherTypeName() is only used in Switch and only with ZT_TRACE | Adam Ierymenko | |
2015-07-07 | Fix potential bug in controller config request. | Adam Ierymenko | |
2015-07-07 | More cleanup to direct path push, comment fixes, etc. | Adam Ierymenko | |
2015-07-07 | A bunch of comments and cleanup, including some to yesterday's direct path ↵ | Adam Ierymenko | |
pushing changes. Move path viability check to one place, and stop trying to use link-local addresses since they are not reliable. | |||
2015-07-07 | Revert some bad docs in Packet -- I think we will still use that. Also ↵ | Adam Ierymenko | |
rename addMembershipCertificate to more security-descriptive validateAndAddMembershipCertificate, give it a return value, and drop unused force parameter. | |||
2015-07-06 | Another attempt at a fix for all the Windows driver coma issues. | Adam Ierymenko | |
2015-07-06 | Eliminate debug printf(). | Adam Ierymenko | |
2015-07-06 | Minor fix to Windows local adapter address enumeration. | Adam Ierymenko | |
2015-07-06 | Remove debug printf(). | Adam Ierymenko | |
2015-07-06 | Add new .h file to VS build, and Windows side of local interface address ↵ | Adam Ierymenko | |
enumeration. | |||
2015-07-06 | Fix bug in direct path push send. | Adam Ierymenko | |
2015-07-06 | Fix FreeBSD regression -- gmake defaults g++ which does not exist. | Adam Ierymenko | |
2015-07-06 | Fix a regression. | Adam Ierymenko | |
2015-07-06 | Unix side of local interface address awareness for GitHub issue #180. | Adam Ierymenko | |
2015-07-06 | Plumbing for local interface addresses -- GitHub issue #180 | Adam Ierymenko | |
2015-07-06 | Almost everything for GitHub issue #180 except direct path map setup. | Adam Ierymenko | |
2015-07-06 | Almost all of GitHub issue #180 | Adam Ierymenko | |
2015-07-06 | Check Network::isAllowed() always on multicast send. | Adam Ierymenko | |
2015-07-06 | pushDirectPaths() implementation | Adam Ierymenko | |
2015-07-06 | Some cleanup, docs, and Path -> Path > RemotePath refactor. | Adam Ierymenko | |
2015-07-06 | For curiosity add Salsa20/8 to benchmarks. | Adam Ierymenko | |
2015-07-06 | Include COM with EXT_FRAME in bridged case. | Adam Ierymenko | |
2015-07-06 | Kill debug line. | Adam Ierymenko | |
2015-07-06 | docs | Adam Ierymenko | |
2015-07-06 | Documentation in Packet, more work on path push, and clean up ancient legacy ↵ | Adam Ierymenko | |
support code in Switch. | |||
2015-07-06 | Merge pull request #203 from mwarning/loadlibs | Adam Ierymenko | |
rename LIBS to LDLIBS and make it accessible from outside | |||
2015-07-06 | rename LIBS to LDLIBS and make it accessible from outside | Moritz Warning | |
2015-07-03 | Merge pull request #202 from mwarning/openwrt | Adam Ierymenko | |
allow environment variables to set/extend build variables | |||
2015-07-03 | allow environment variables to set/extend CC, CXX, CFLAGS and LDFLAGS | Moritz Warning | |
2015-07-02 | GitHub issue #171 -- separate CFLAGS and CXXFLAGS in Linux makefile | Adam Ierymenko | |
2015-07-02 | Revert 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-01 | For @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-29 | Rename VERB_CMA to the more descriptive VERB_PHYSICAL_ADDRESS_PUSH | Adam Ierymenko | |
2015-06-29 | ipLocalRoutes now exposed via network objects in JSON controller API, and ↵ | Adam Ierymenko | |
documentation changes. | |||
2015-06-29 | Untested -- 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-29 | DB schema changes: separate portId in rules, ranges in IP assignment pools. ↵ | Adam Ierymenko | |
(No code changes yet so code is broken.) | |||
2015-06-29 | Fix semantics of std::unique() to actually remove duplicates (hidden memory ↵ | Adam Ierymenko | |
leak?) | |||
2015-06-26 | Put multicast txQueue back to list. | Adam Ierymenko | |
2015-06-26 | Add Kees Bos to AUTHORS :) | Adam Ierymenko | |
2015-06-26 | Merge pull request #196 from keesbos/fixes | Adam Ierymenko | |
Fixes for controller | |||
2015-06-26 | GitHub 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-26 | Redo 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-26 | Fix reporting of ipAssignments for ipv4 | Kees Bos | |
2015-06-26 | Fix cert verification check for self signed signatures | Kees Bos | |
2015-06-23 | Merge pull request #192 from mwarning/replace_erase | Adam Ierymenko | |
replace vector::erase, was missed in a previous commit (ref #186) | |||
2015-06-23 | replace vector::erase, was missed in a previous commit (ref #186) | Moritz Warning | |
2015-06-22 | Merge branch '_networks_vector' of https://github.com/mwarning/ZeroTierOne ↵ | Adam Ierymenko | |
into adamierymenko-dev | |||
2015-06-22 | Merge pull request #189 from keesbos/bugfix-auth-member | Adam Ierymenko | |
Fixed member authorization bug and minor cleanup |