Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-19 | Create peer structures for disabled peers as well | Matthias Schiffer | |
We have a 1:1 association between peers and peer configs now. | |||
2014-08-18 | Unify enabled and dynamic flags into a config_state flag | Matthias Schiffer | |
2014-08-18 | Remove a few now unneeded peer->config NULL checks | Matthias Schiffer | |
2014-08-18 | Fix a few comment typos | Matthias Schiffer | |
2014-08-18 | Dynamically create peer configs for dynamic peers | Matthias Schiffer | |
This avoids duplicating the protocol_config field. | |||
2014-08-18 | Rename WITH_VERIFY CMake option to WITH_DYNAMIC_PEERS | Matthias Schiffer | |
2014-08-18 | peer: add a flag `dynamic' instead of checking the config field for NULL | Matthias Schiffer | |
2014-08-18 | Rename "temporary peers" to "dynamic peers" | Matthias Schiffer | |
2014-08-18 | peer: remove fastd_remote_is_dynamic() | Matthias Schiffer | |
2014-08-18 | peer: remove dead code fastd_remote_matches_dynamic() | Matthias Schiffer | |
2014-08-09 | Move fastd_config_t.peers to fastd_context_t.peer_configs | Matthias Schiffer | |
2014-08-09 | log: fix port of IPv6 addresses with hidden IP addresses | Matthias Schiffer | |
2014-08-02 | Add MacOS X semaphore implementation | Matthias Schiffer | |
2014-08-02 | Encapsulate semaphore handling | Matthias Schiffer | |
2014-08-02 | Add support for Mac OS X | Matthias Schiffer | |
2014-08-02 | Don't use exponential notation for integers | Matthias Schiffer | |
2014-08-02 | Introduce and use alloc helpers | Matthias Schiffer | |
These new helpers will terminate fastd on allocation failures and add some additional convenience (allow strdup with NULL; typesafe new(type) macros). | |||
2014-08-01 | Fix CMake warning about doc target, only use `doxygen' target | Matthias Schiffer | |
Also, to avoid conflicts with the doc directory, the default output dir has been changed to doxygen. | |||
2014-08-01 | Use srandom/random instead of rand_r | Matthias Schiffer | |
There's no need to keep our own seed. | |||
2014-07-10 | config: fix basic config checks in TUN mode | Matthias Schiffer | |
2014-06-30 | Development version | Matthias Schiffer | |
2014-06-30 | fastd v14v14 | Matthias Schiffer | |
2014-06-28 | Fix build with ENABLE_OPENSSL | Matthias Schiffer | |
2014-06-21 | Development version | Matthias Schiffer | |
2014-06-21 | fastd v13v13 | Matthias Schiffer | |
2014-06-21 | Update man | Matthias Schiffer | |
2014-06-14 | peer_hashtable: fix address hashing on systems with holes in sockaddr ↵ | Matthias Schiffer | |
definitions | |||
2014-06-14 | Add missing sys/uio.h includes | Matthias Schiffer | |
2014-06-14 | verify: add missing sys/wait.h include | Matthias Schiffer | |
2014-06-14 | shell: add missing signal.h include | Matthias Schiffer | |
2014-06-14 | peer: remove always-true condition | Matthias Schiffer | |
2014-06-14 | Ensure that peers get their place in the handshake queue even when the async ↵ | Matthias Schiffer | |
queue is full When the first resolve return for a newly reset peer is lost, init_handshake() would never be called, and the peer would never get handshakes again. This probably won't ever happen in practice, but since it's easy to fix, better be correct here. | |||
2014-06-14 | Limit the number of concurrent on-verify runs | Matthias Schiffer | |
2014-06-12 | Remove an unused variable | Matthias Schiffer | |
2014-06-12 | Fix an undefined shift | Matthias Schiffer | |
2014-06-11 | Fix error message when ENABLE_LIBSODIUM is set and libsodium is not found | Matthias Schiffer | |
2014-06-10 | Clean up peer config loading | Matthias Schiffer | |
Instead of changing the peer list and peer group in the main conf during (re-)loading, add a parser state which contains this information. | |||
2014-06-08 | Allow async verify for handshake responses | Matthias Schiffer | |
This will lead to a bit strange handshake as a handshake response is answered with another handshake response, but it won't lead to loops because of the verification and handshake backoff intervals. | |||
2014-06-08 | Add ENABLE_LTO cmake option | Matthias Schiffer | |
Tested with GCC and clang; unlikely to work with other toolchains, so it's disabled by default. | |||
2014-06-06 | Use gcc-provided ar, nm and ranlib if available to allow supporting LTO | Matthias Schiffer | |
2014-06-05 | Simplify systemd notify socket handling | Matthias Schiffer | |
2014-06-04 | Use libsodium by default | Matthias Schiffer | |
2014-06-03 | Create threads in detached state | Matthias Schiffer | |
2014-05-31 | dump_state(): used unsigned instead of size_t to ensure correct variadic ↵ | Matthias Schiffer | |
function call | |||
2014-05-31 | Fix dump_state() | Matthias Schiffer | |
2014-05-31 | Fix poll race condition on *BSD | Matthias Schiffer | |
2014-05-31 | More signal handling fixes | Matthias Schiffer | |
2014-05-31 | Fix blocking signals... | Matthias Schiffer | |
2014-05-31 | Remove EINTR handling where signals are blocked anyways | Matthias Schiffer | |
2014-05-31 | Unblock signals only during poll/epoll wait | Matthias Schiffer | |
If signals are normally blocked, we can avoid a lot of EINTR handling. |