diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-05 08:59:12 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-05 08:59:12 +0000 |
commit | ace0f7f83f3322cc3b251835c7a44d63c8d8acb3 (patch) | |
tree | fbb9261f74e8cddb0c11a48798d2f7e1fbc7e478 /include | |
parent | e962708ca03d7c593e4119c487eb8e0d591ef6d7 (diff) |
Added OnChangeHost
Added OnChangeName
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2181 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/modules.h b/include/modules.h index 35a4caf52..21418ba8a 100644 --- a/include/modules.h +++ b/include/modules.h @@ -436,6 +436,10 @@ class Module : public classbase virtual void ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline); virtual void OnWallops(userrec* user, std::string text); + + virtual void OnChangeHost(userrec* user, std::string newhost); + + virtual void OnChangeName(userrec* user, std::string gecos); /** Called after any nickchange, local or remote. This can be used to track users after nickchanges * have been applied. Please note that although you can see remote nickchanges through this function, you should |