summaryrefslogtreecommitdiff
path: root/include/users.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2016-03-02 15:20:21 +0100
committerAttila Molnar <attilamolnar@hush.com>2016-03-02 15:20:21 +0100
commit78044f849b63c71fb9c741c648415a298c0ed617 (patch)
treecea99eb0916f69f94aad904596b6c20eda949f38 /include/users.h
parent4f1005acd1e97a6dac8182f80a0ccf453376ba67 (diff)
parent48d19bdd2cdccca18c82d74c0c0cbefc2a87069a (diff)
Merge branch 'master+writeremotenotice'
Diffstat (limited to 'include/users.h')
-rw-r--r--include/users.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/users.h b/include/users.h
index 5e7df74ea..8d53197ba 100644
--- a/include/users.h
+++ b/include/users.h
@@ -519,6 +519,11 @@ class CoreExport User : public Extensible
*/
void WriteNotice(const std::string& text) { this->WriteCommand("NOTICE", ":" + text); }
+ /** Send a NOTICE message from the local server to the user.
+ * @param text Text to send
+ */
+ virtual void WriteRemoteNotice(const std::string& text);
+
void WriteRemoteNumeric(const Numeric::Numeric& numeric);
template <typename T1>
@@ -847,6 +852,12 @@ class CoreExport LocalUser : public User, public insp::intrusive_list_node<Local
void Write(const std::string& text);
void Write(const char*, ...) CUSTOM_PRINTF(2, 3);
+ /** Send a NOTICE message from the local server to the user.
+ * The message will be sent even if the user is connected to a remote server.
+ * @param text Text to send
+ */
+ void WriteRemoteNotice(const std::string& text) CXX11_OVERRIDE;
+
/** Returns true or false for if a user can execute a privilaged oper command.
* This is done by looking up their oper type from User::oper, then referencing
* this to their oper classes and checking the commands they can execute.