summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-03-31 14:44:33 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-03-31 14:44:33 +0000
commit8a01e21a489d8d2515679eaf6de9da20431953e9 (patch)
tree747eb5fe469d41e5110bf3cd3cb4fe42b540f004 /include/modules.h
parentab9c1e46513ffd2b44fb30fbc0845e7474d1c5fa (diff)
Send snotice after connecting to the network. Also change OnServerConnect to take Server*, not a name.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2227 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h
index f0da30255..8b0144d85 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -506,9 +506,9 @@ class CoreExport Module
virtual void OnUserConnect(User *u) { }
/** Called when a new server connects to the network.
- * @param sname The server name that is connecting
+ * @param s The server that has connected to the network
*/
- virtual void OnServerConnect(const std::string &sname) { }
+ virtual void OnServerConnect(Server *s) { }
/** Called when anope saves databases.
* NOTE: This event is deprecated pending new database handling.