summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-11-05 23:26:11 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-11-05 23:26:11 +0100
commit466d6d2767161c9ac3f0c54f06ef782faa6a5fcb (patch)
treedb2adba1058d2289ee3fe86ab044fea574114abd /doc
parent45e70ed7dd8fc964c1afc9bba8856b97cd2ee22e (diff)
downloadfastd-466d6d2767161c9ac3f0c54f06ef782faa6a5fcb.tar
fastd-466d6d2767161c9ac3f0c54f06ef782faa6a5fcb.zip
Add fastd v15 release notes
Diffstat (limited to 'doc')
-rw-r--r--doc/source/index.rst8
-rw-r--r--doc/source/releases/v15.rst57
2 files changed, 64 insertions, 1 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 0a6defe..93177c5 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -12,6 +12,13 @@ User manual
manual/methods
manual/mtu
+Release notes
+-------------
+
+.. toctree::
+ :maxdepth: 2
+
+ releases/v15
Cryptographic algorithms
------------------------
@@ -25,7 +32,6 @@ Cryptographic algorithms
crypto/macs
crypto/methods
-
Developer documentation
-----------------------
diff --git a/doc/source/releases/v15.rst b/doc/source/releases/v15.rst
new file mode 100644
index 0000000..b37adc4
--- /dev/null
+++ b/doc/source/releases/v15.rst
@@ -0,0 +1,57 @@
+fastd v15
+=========
+
+New features
+~~~~~~~~~~~~
+* New message authentication code UMAC
+
+ The new message authentication code UMAC provides very high security with much higher
+ than the old GMAC methods. "salsa2012+umac" and "null+salsa2012+umac" are the new recommended
+ methods for authenticated encryption and authenticated-only operation.
+
+* Status socket
+
+ A status unix socket can be configured with the new *status socket* option. fastd will dump
+ its current state on every connection on this socket; this status output is much more
+ complete than the old SIGUSR1 output. SIGUSR1 is ignored now.
+
+ To compile fastd with status socket support, libjson-c is required.
+ An example script to get the status can be found at ``doc/examples/status.pl``.
+
+* MacOS X support
+
+ fastd should now also run on recent versions of MacOS X. The inofficial
+ TUN/TAP driver is required for this.
+
+* New Sphinx-based documentation
+
+* Fix warnings with CMake 3.0
+
+Bugfixes
+~~~~~~~~
+* Signal handling improvements
+
+ This should fix an issue where asynchronous handler scripts would be left as zombie processes.
+
+* Config check fixes in TUN mode
+
+ For some configuration mistakes, fastd would segfault instead of printing an error message.
+
+Other changes
+~~~~~~~~~~~~~
+* Nicer error messages for common configuration mismatches like having no common methods
+
+* When no port is given in a *bind* directive, a new random port will be chosed now for every
+ new connection attempt (like it was already done when no bind address was configured at all)
+
+ This allows setting additional bind options like interface binds without setting a static port.
+
+* The peer hashtable is now grown dynamically to reduce memory usage for small numbers of peers
+ and improve performance for huge numbers of peers
+
+* Major refactoring: the internal peer and peer config structs have been merged
+
+* Internally, int64 timestamps in milliseconds are now used always instead of struct timespec
+
+ Milliseconds resolution and int64 range is completely sufficient, and many parts of the code
+ become simpler like this.