diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/modules.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index 2c1cf4ff7..2745fef33 100644 --- a/include/modules.h +++ b/include/modules.h @@ -466,11 +466,13 @@ class Module : public classbase virtual void OnDelZLine(userrec* source, std::string ipmask); virtual void OnDelKLine(userrec* source, std::string hostmask); - + virtual void OnDelQLine(userrec* source, std::string nickmask); virtual void OnDelELine(userrec* source, std::string hostmask); + virtual void OnCleanup(int target_type, void* source); + /** 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 * NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. |