1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 07:46:40 +02:00

Renamed OnServerConnect(Server*) event to OnNewServer, we have two OnServerConnect's which is slightly confusing...

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2566 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2009-10-17 01:17:06 +00:00
parent 63f55fa78b
commit 72fed4d9bb
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -540,7 +540,7 @@ class CoreExport Module
/** Called when a new server connects to the network.
* @param s The server that has connected to the network
*/
virtual void OnServerConnect(Server *s) { }
virtual void OnNewServer(Server *s) { }
/** Called after a user changed the nick
* @param u The user.
@@ -956,7 +956,7 @@ enum Implementation
I_OnDefconLevel,
/* Other */
I_OnReload, I_OnPreServerConnect, I_OnServerConnect, I_OnPreCommand, I_OnPostCommand, I_OnPostLoadDatabases, I_OnSaveDatabase, I_OnBackupDatabase,
I_OnReload, I_OnPreServerConnect, I_OnNewServer, I_OnServerConnect, I_OnPreCommand, I_OnPostCommand, I_OnPostLoadDatabases, I_OnSaveDatabase, I_OnBackupDatabase,
I_OnPreDatabaseExpire, I_OnDatabaseExpire, I_OnPreRestart, I_OnRestart, I_OnPreShutdown, I_OnShutdown, I_OnSignal,
I_OnServerQuit, I_OnTopicUpdated,
I_OnEncrypt, I_OnEncryptInPlace, I_OnEncryptCheckLen, I_OnDecrypt, I_OnCheckPassword,
+1 -1
View File
@@ -420,7 +420,7 @@ void do_server(const char *source, const char *servername, const char *hops,
notice_server(s_GlobalNoticer, newserver, "%s", GlobalOnCycleUP);
/* Let modules know about the connection */
FOREACH_MOD(I_OnServerConnect, OnServerConnect(newserver));
FOREACH_MOD(I_OnNewServer, OnNewServer(newserver));
}
/*************************************************************************/