summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2016-06-04 13:47:27 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2016-06-04 18:59:03 -0400
commit4eeeb8fc76627316ed62ebd24b3ec6d4b3245f1d (patch)
tree4f7ecb969a4a318fb1ea906b63cb7b3e744f8774 /doc
parentf3e36ccdbb8a974114c0386010c7a4b17e959dcd (diff)
downloadlighttpd-git-4eeeb8fc76627316ed62ebd24b3ec6d4b3245f1d.tar.gz
[config] server.bsd-accept-filter option
BSD accept() filters server.bsd-accept-filter = "" (default) server.bsd-accept-filter = "httpready" server.bsd-accept-filter = "dataready" Note: this is a behavior change from prior versions. The default is now no additional accept() filter, whereas prior versions unconditionally enabled "httpready" accept() filter Additionally, server.defer-accept (Linux) is inherited from global scope into $SERVER["socket"] blocks github: closes #65
Diffstat (limited to 'doc')
-rw-r--r--doc/outdated/configuration.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/outdated/configuration.txt b/doc/outdated/configuration.txt
index 3d49f7ff..c32809b4 100644
--- a/doc/outdated/configuration.txt
+++ b/doc/outdated/configuration.txt
@@ -285,7 +285,14 @@ server.defer-accept
set TCP_DEFER_ACCEPT to the specified value on the socket if the value is > 0
and TCP_DEFER_ACCEPT is available on the platform (linux2.4+)
- default: 0
+ Default: 0
+
+server.bsd-accept-filter
+ set SO_ACCEPTFILTER on listen sockets (*BSD systems, e.g. FreeBSD)
+ e.g. server.bsd-accept-filter = "httpready"
+ or server.bsd-accept-filter = "dataready"
+
+ Default: "" (none)
server.tag
set the string returned by the Server: response header