commit 281d8e454de6f59c061dce5f9ba3fd22f521cac9 from: Alexander Barton date: Mon Mar 25 16:14:15 2002 UTC - Default PONG-Timeout auf 20 Sekunden verdoppelt. commit - 8e5a56cea7b207ff92c8bb4e38d93dfa79dc1833 commit + 281d8e454de6f59c061dce5f9ba3fd22f521cac9 blob - e0202b720e51d83b1c5851ee2103655f777b69e4 blob + e4b69ef02e86c9125064ca201c553c328a4de807 --- doc/sample-ngircd.conf +++ doc/sample-ngircd.conf @@ -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 # Sekunden mit einem PONG, so wird er disconnectiert. - PongTimeout = 10 + PongTimeout = 20 # Der Server versucht alle Sekunden, noch nicht bzw. # nicht mehr connectierte Server-Links aufzubauen. blob - a99fee2bb6b6c16dd4c395797c4edd1eb48f1f97 blob + df93b28b79ad5930ba21bd5462054c7b2d14bb23 --- src/ngircd/conf.c +++ src/ngircd/conf.c @@ -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;