| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-08-10 | Better instrumentation for filter, and filter bug fixes. | Adam Ierymenko | |
| 2016-08-10 | Rule parse fix. | Adam Ierymenko | |
| 2016-08-09 | Minor bug fix and some instrumentation stuff for testing. | Adam Ierymenko | |
| 2016-08-09 | More cleanup and removal of cruft due to obsolete network-specific relays ↵ | Adam Ierymenko | |
| (will be replaced with federation stuff). | |||
| 2016-08-09 | Handling of multi-part chunked network configs on the inbound side. | Adam Ierymenko | |
| 2016-08-09 | Encode and decode of tags and capabilities in NetworkConfig. | Adam Ierymenko | |
| 2016-08-08 | It builds... almost ready to test some rules engine stuff. | Adam Ierymenko | |
| 2016-08-08 | Refactor and tie-up of capabilities and tags and packet evaluation points. ↵ | Adam Ierymenko | |
| Some optimization is possible here but it is minor and we will make it work first. | |||
| 2016-08-05 | . | Adam Ierymenko | |
| 2016-08-05 | . | Adam Ierymenko | |
| 2016-08-04 | More cleanup and a tiny federation prep item. | Adam Ierymenko | |
| 2016-08-04 | . | Adam Ierymenko | |
| 2016-08-03 | Bunch of work on pushing and replication of tags and capabilities, and ↵ | Adam Ierymenko | |
| protocol cleanup. | |||
| 2016-06-21 | Make Dictionary templatable so it can be used where we want a higher capacity. | Adam Ierymenko | |
| 2016-06-16 | Big refactor mostly builds. We now have a uniform backward compatible netconf. | Adam Ierymenko | |
| 2016-06-14 | Big refactor in service code to prep for plumbing through route management. | Adam Ierymenko | |
| 2016-06-07 | Carry virtual network routes through to API. | Adam Ierymenko | |
| 2016-05-16 | Fix new binary meta-data deserialization and add some debug code (will ↵ | Adam Ierymenko | |
| disable later). | |||
| 2016-05-11 | Ready to test whole new netconf refactor. | Adam Ierymenko | |
| 2016-05-06 | Simplify a bunch of NetworkConfig stuff by eliminating accessors, also makes ↵ | Adam Ierymenko | |
| network controller easier to refactor. | |||
| 2016-05-06 | Changes to how new-style binary network configs are detected, and a ↵ | Adam Ierymenko | |
| new-style binary serialized meta-data representation. | |||
| 2016-04-26 | Deserialize new style netconf. | Adam Ierymenko | |
| 2016-04-26 | More refactoring to remove old Dictionary dependencies. | Adam Ierymenko | |
| 2016-04-19 | Cleanup in numerous places, reduce network chattiness around MULTICAST_LIKE, ↵ | Adam Ierymenko | |
| and fix a "how was that working" latent bug causing some control traffic to take the scenic route. | |||
| 2016-04-12 | Refactor Network for new NetworkConfig. | Adam Ierymenko | |
| 2016-04-12 | NetworkConfig refactor part 1 | Adam Ierymenko | |
| 2016-01-12 | boring doc stuff | Adam Ierymenko | |
| 2016-01-12 | Docs and cleanup. | Adam Ierymenko | |
| 2016-01-12 | Use network user ptr in lookup for Ethernet frame handling to eliminate map ↵ | Adam Ierymenko | |
| lookup. | |||
| 2016-01-12 | Add a network-associated user ptr in API. | Adam Ierymenko | |
| 2015-10-27 | Factor out RemotePath subclass of Path -- no longer needed, just cruft. | Adam Ierymenko | |
| 2015-10-23 | Refactor multicast group announcement to work directly or indirectly. | Adam Ierymenko | |
| 2015-10-07 | Tune NAT-t keepalives so that timing is better obeyed, clean up a build ↵ | Adam Ierymenko | |
| warning, and fix a potential source of network recursion (though harmless). | |||
| 2015-10-06 | Fix TRACE output. | Adam Ierymenko | |
| 2015-10-02 | no toString() method on peer. Commenting out for now. | Grant Limberg | |
| 2015-10-01 | Always announce multicast groups, not just to peers with direct links, and ↵ | Adam Ierymenko | |
| push network COMs to any MULTICAST_LIKE recipient for future use. | |||
| 2015-10-01 | Restore group announcement on Peer::receive() but centralize packet ↵ | Adam Ierymenko | |
| composition in one place. | |||
| 2015-10-01 | Refactor: move network COMs out of Network and into Peer in prep for ↵ | Adam Ierymenko | |
| tightening up multicast lookup and other things. | |||
| 2015-09-24 | (1) Make ZT_ naming convention consistent (get rid of ZT1_), (2) Make local ↵ | Adam Ierymenko | |
| interface a full sockaddr_storage instead of an int identifier, which turns out to be better for multi-homing and other uses. | |||
| 2015-09-08 | Add a bit of useful testing instrumentation to SqliteNetworkController. | Adam Ierymenko | |
| 2015-09-04 | Two for one! (std::map removal) | Adam Ierymenko | |
| 2015-09-04 | ... and another one! | Adam Ierymenko | |
| 2015-09-04 | Another std::map<> dies. | Adam Ierymenko | |
| 2015-07-31 | Add security notice to auto-update info in -h output, and fix a missing paren. | Adam Ierymenko | |
| 2015-07-31 | Remove a bit of redundant logic, and also announce MULTICAST_LIKEs to ↵ | Adam Ierymenko | |
| controllers (for future use). | |||
| 2015-07-23 | Eliminate some poorly thought out optimizations from the netconf/controller ↵ | Adam Ierymenko | |
| interaction, and go ahead and bump version to 1.0.4. For a while in 1.0.3 -dev I was trying to optimize out repeated network controller requests by using a ratcheting mechanism. If the client received a network config that was indeed different from the one it had, it would respond by instantlly requesting it again. Not sure what I was thinking. It's fundamentally unsafe to respond to a message with another message of the same type -- it risks a race condition. In this case that's exactly what could happen. It just isn't worth the added complexity to avoid a tiny, tiny amount of network overhead, so I've taken this whole path out. A few extra bytes every two minutes isn't worth fretting about, but as I recall the reason for this optimization was to save CPU on the controller. This can be achieved by just caching responses in memory *there* and serving those same responses back out if they haven't changed. I think I developed that 'ratcheting' stuff before I went full time on this. It's hard to develop stuff like this without hours of sustained focus. | |||
| 2015-07-07 | Fix potential bug in controller config request. | Adam Ierymenko | |
| 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-06-29 | Fix semantics of std::unique() to actually remove duplicates (hidden memory ↵ | Adam Ierymenko | |
| leak?) | |||
| 2015-06-26 | Fix cert verification check for self signed signatures | Kees Bos | |
