summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/modules.h3
-rw-r--r--include/users.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h
index e40b1d31b..5529862f4 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -588,9 +588,10 @@ class CoreExport Module : public Extensible
* can be gauranteed to already have processed the oper-up, for example m_spanningtree has sent
* out the OPERTYPE, etc.
* @param user The user who is opering up
+ * @param opername The name of the oper that the user is opering up to. Only valid locally. Empty string otherwise.
* @param opertype The opers type name
*/
- virtual void OnPostOper(User* user, const std::string &opertype);
+ virtual void OnPostOper(User* user, const std::string &opername, const std::string &opertype);
/** Called whenever a user types /INFO.
* The User will contain the information of the user who typed the command. Modules may use this
diff --git a/include/users.h b/include/users.h
index f28a12c75..cd2e98bd4 100644
--- a/include/users.h
+++ b/include/users.h
@@ -888,7 +888,7 @@ class CoreExport User : public connection
* This will also give the +o usermode.
* @param opertype The oper type to oper as
*/
- void Oper(const std::string &opertype);
+ void Oper(const std::string &opertype, const std::string &opername);
/** Call this method to find the matching <connect> for a user, and to check them against it.
*/