mirror of
https://github.com/osmarks/ngircd.git
synced 2025-02-04 19:39:10 +00:00
- Default PONG-Timeout auf 20 Sekunden verdoppelt.
This commit is contained in:
parent
8e5a56cea7
commit
281d8e454d
@ -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
|
# 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
|
# Antwortet ein Client, der ein PING bekam, nicht innerhalb von
|
||||||
# <PongTimeout> Sekunden mit einem PONG, so wird er disconnectiert.
|
# <PongTimeout> Sekunden mit einem PONG, so wird er disconnectiert.
|
||||||
PongTimeout = 10
|
PongTimeout = 20
|
||||||
|
|
||||||
# Der Server versucht alle <ConnectRetry> Sekunden, noch nicht bzw.
|
# Der Server versucht alle <ConnectRetry> Sekunden, noch nicht bzw.
|
||||||
# nicht mehr connectierte Server-Links aufzubauen.
|
# nicht mehr connectierte Server-Links aufzubauen.
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||||
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
* 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
|
* conf.h: Konfiguration des ngircd
|
||||||
*/
|
*/
|
||||||
@ -58,7 +58,7 @@ GLOBAL VOID Conf_Init( VOID )
|
|||||||
Conf_ListenPorts_Count = 0;
|
Conf_ListenPorts_Count = 0;
|
||||||
|
|
||||||
Conf_PingTimeout = 120;
|
Conf_PingTimeout = 120;
|
||||||
Conf_PongTimeout = 10;
|
Conf_PongTimeout = 20;
|
||||||
|
|
||||||
Conf_ConnectRetry = 60;
|
Conf_ConnectRetry = 60;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user