summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-11-06 22:07:08 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-11-06 22:07:08 +0100
commitd032c2244d67ab95a066707af76a7fe41d5fd314 (patch)
treee3da84e0332e9cc80e6cd99a245ff4069442b5a1 /doc
parent5547c3d783e1350bab4dee02fcb5d42bd3de2c0e (diff)
downloadfastd-d032c2244d67ab95a066707af76a7fe41d5fd314.tar
fastd-d032c2244d67ab95a066707af76a7fe41d5fd314.zip
docs: even more release note fixes...
Diffstat (limited to 'doc')
-rw-r--r--doc/source/releases/v15.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/releases/v15.rst b/doc/source/releases/v15.rst
index d9147de..664ca16 100644
--- a/doc/source/releases/v15.rst
+++ b/doc/source/releases/v15.rst
@@ -11,9 +11,9 @@ New features
* 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.
+ A unix socket can be configured with the new *status socket* option. fastd will dump
+ its current state as JSON on every connection on this socket; this status output is much more
+ detailed 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``.
@@ -41,7 +41,7 @@ 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
+* When no port is given in a *bind* directive, a new random port will be chosen 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.
@@ -54,4 +54,4 @@ Other changes
* 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.
+ have become simpler due to this change.