diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-15 17:37:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-03-15 17:37:25 +0000 |
commit | 38ca8be9a3881a3cb3cf6864e67b779ffbab6874 (patch) | |
tree | 2f611ef900a80433c881702fbc5ea4c7f1a5da98 /include/users.h | |
parent | d1dc60e83eef53da5368e18955acfa6c72be0374 (diff) |
Add third parameter to OnUserQuit (quit reason for opers only) - bump api version
Add SetOperQuit and GetOperQuit methods to userrec
Add OPERQUIT command to protocol - bump protocol version
All this is to properly allow hidebans etc to work properly
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6675 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/users.h b/include/users.h index 8da80d62f..d9a5168cc 100644 --- a/include/users.h +++ b/include/users.h @@ -283,6 +283,9 @@ class userrec : public connection * mode characters this user is making use of. */ void DecrementModes(); + + char* operquit; + public: /** Resolvers for looking up this users IP address * This will occur if and when res_reverse completes. @@ -895,6 +898,13 @@ class userrec : public connection */ void ShowRULES(); + /** Set oper-specific quit message shown to opers only when the user quits + * (overrides any sent by QuitUser) + */ + void SetOperQuit(const std::string &oquit); + + const char* GetOperQuit(); + /** Handle socket event. * From EventHandler class. * @param et Event type |