diff options
| author | Alexander Barton <alex@barton.de> | 2003-03-27 01:22:44 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2003-03-27 01:22:44 +0000 |
| commit | 24df40eca7094eecb90eb7b988107e8c603e39a4 (patch) | |
| tree | fe25de00cd89e6239cfb303686e62d7e4ee2eef8 /src | |
| parent | 02a22611be07e39b8267a27ae0f391aa1f81ede9 (diff) | |
| download | ngircd-24df40eca7094eecb90eb7b988107e8c603e39a4.tar.gz ngircd-24df40eca7094eecb90eb7b988107e8c603e39a4.zip | |
Synchronize server connections with server configurations after reloading the configuration.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/ngircd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 1166c7b7..45cdfac3 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.74 2003/03/07 14:50:13 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.75 2003/03/27 01:22:44 alex Exp $"; #include "imp.h" #include <assert.h> @@ -437,6 +437,9 @@ NGIRCd_Rehash( VOID ) /* Listen-Sockets neu anlegen: */ Conn_InitListeners( ); + /* Sync configuration with established connections */ + Conn_SyncServerStruct( ); + Log( LOG_NOTICE|LOG_snotice, "Re-reading of configuration done." ); } /* NGIRCd_Rehash */ |