diff options
author | Daniel Vassdal <shutter@canternet.org> | 2013-05-22 12:48:58 -0700 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-03 18:45:46 +0200 |
commit | 263c2efd960057f1cfafd40fce338605c39b0ad4 (patch) | |
tree | bd953e551f1f184b3725da2cf9656a4bb302983b /docs | |
parent | ca4c4a67988419b9eb479ffcf82238dc1648b0ad (diff) |
Added option for using TCP_DEFER_ACCEPT. Prevents the connection from being handed over to the daemon before data is ready from the client.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/inspircd.conf.example | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index eeed82237..f6dc96ecd 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -164,6 +164,17 @@ # for ssl to work. If you do not want this bind section to support ssl, # just remove or comment out this option. ssl="gnutls" + + # defer: When this is non-zero, connections will not be handed over to + # the daemon from the operating system before data is ready. + # In Linux, the value indicates the number of seconds we'll wait for a + # connection to come up with data. Don't set it too low! + # In BSD the value is ignored; only zero and non-zero is possible. + # Windows ignores this parameter completely. + # Note: This does not take effect on rehash. + # To change it on a running bind, you'll have to comment it out, + # rehash, comment it in and rehash again. + defer="0" > <bind address="" port="6660-6669" type="clients"> |