summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-05 16:06:32 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-05 16:06:32 +0000
commitcbc730ec3bd2c080d08fa735af58ffd871b55ca4 (patch)
tree8f633daab8464e77b8a8a8ba24986a2bfde34642 /src/modules.cpp
parent829b139abdef2e07254f7237e4fbb8481a0b62ca (diff)
Added support for OnWhois, OnOper, OnInfo and SendToModeMask in the API
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@388 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 8ff5874af..5bea5133f 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -117,6 +117,9 @@ void Module::OnServerRaw(std::string &raw, bool inbound) { }
int Module::OnUserPreJoin(userrec* user, chanrec* chan, char* cname) { return 0; }
bool Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { }
Version Module::GetVersion() { return Version(1,0,0,0); }
+void Module::OnOper(userrec* user) { };
+void Module::OnInfo(userrec* user) { };
+void Module::OnWhois(userrec* source, userrec* dest) { };
// server is a wrapper class that provides methods to all of the C-style
// exports in the core
@@ -135,6 +138,11 @@ void Server::SendOpers(std::string s)
WriteOpers("%s",s.c_str());
}
+void Server::SendToModeMask(std::string modes, int flags, std::string text)
+{
+ WriteMode(modes.c_str(),flags,"%s",text.c_str());
+}
+
void Server::Log(int level, std::string s)
{
log(level,"%s",s.c_str());