From 263c2efd960057f1cfafd40fce338605c39b0ad4 Mon Sep 17 00:00:00 2001 From: Daniel Vassdal Date: Wed, 22 May 2013 12:48:58 -0700 Subject: Added option for using TCP_DEFER_ACCEPT. Prevents the connection from being handed over to the daemon before data is ready from the client. --- docs/conf/inspircd.conf.example | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'docs/conf/inspircd.conf.example') 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" > -- cgit v1.2.3