1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

- Default PONG-Timeout auf 20 Sekunden verdoppelt.

This commit is contained in:
Alexander Barton 2002-03-25 16:14:15 +00:00
parent 8e5a56cea7
commit 281d8e454d
2 changed files with 4 additions and 4 deletions

View 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.

View 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;