]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- Default PONG-Timeout auf 20 Sekunden verdoppelt.
authorAlexander Barton <alex@barton.de>
Mon, 25 Mar 2002 16:14:15 +0000 (16:14 +0000)
committerAlexander Barton <alex@barton.de>
Mon, 25 Mar 2002 16:14:15 +0000 (16:14 +0000)
doc/sample-ngircd.conf
src/ngircd/conf.c

index e0202b720e51d83b1c5851ee2103655f777b69e4..e4b69ef02e86c9125064ca201c553c328a4de807 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: sample-ngircd.conf,v 1.5 2002/03/12 16:08:31 alex Exp $
+# $Id: sample-ngircd.conf,v 1.6 2002/03/25 16:14:15 alex Exp $
 
 #
 # Das ist eine Beispiel-Konfiguration fuer den ngIRCd, die an die
@@ -33,7 +33,7 @@
 
        # Antwortet ein Client, der ein PING bekam, nicht innerhalb von
        # <PongTimeout> Sekunden mit einem PONG, so wird er disconnectiert.
-       PongTimeout = 10
+       PongTimeout = 20
 
        # Der Server versucht alle <ConnectRetry> Sekunden, noch nicht bzw.
        # nicht mehr connectierte Server-Links aufzubauen.
index a99fee2bb6b6c16dd4c395797c4edd1eb48f1f97..df93b28b79ad5930ba21bd5462054c7b2d14bb23 100644 (file)
@@ -9,7 +9,7 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: conf.c,v 1.18 2002/03/12 14:37:52 alex Exp $
+ * $Id: conf.c,v 1.19 2002/03/25 16:14:15 alex Exp $
  *
  * conf.h: Konfiguration des ngircd
  */
@@ -58,7 +58,7 @@ GLOBAL VOID Conf_Init( VOID )
        Conf_ListenPorts_Count = 0;
        
        Conf_PingTimeout = 120;
-       Conf_PongTimeout = 10;
+       Conf_PongTimeout = 20;
 
        Conf_ConnectRetry = 60;