From efda5071934b078dd939a53cde317e60a11ba401 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 30 Nov 2005 22:05:45 +0000 Subject: [PATCH] Added OnSyncUser, OnSyncChannel, ProtoSendMode git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2070 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chanfilter.cpp | 4 ++-- src/modules/m_chanprotect.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/m_chanfilter.cpp b/src/modules/m_chanfilter.cpp index 9f1722b8d..3db636b35 100644 --- a/src/modules/m_chanfilter.cpp +++ b/src/modules/m_chanfilter.cpp @@ -208,7 +208,7 @@ class ModuleChanFilter : public Module return Version(1,0,0,0,VF_STATIC|VF_VENDOR); } - virtual string_list OnChannelSync(chanrec* chan) + virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { SpamList* spamlist = (SpamList*)chan->GetExt("spam_list"); string_list commands; @@ -216,7 +216,7 @@ class ModuleChanFilter : public Module { for (SpamList::iterator i = spamlist->begin(); i != spamlist->end(); i++) { - commands.push_back("M "+std::string(chan->name)+" +g "+*i); + proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+g "+*i); } } return commands; diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index 0938dacb0..325a50a13 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -335,7 +335,7 @@ class ModuleChanProtect : public Module return Version(1,0,0,0,VF_STATIC|VF_VENDOR); } - virtual string_list OnChannelSync(chanrec* chan) + virtual void OnChannelSync(chanrec* chan, Module* proto, void* opaque) { // this is called when the server is linking into a net and wants to sync channel data. // we should send our mode changes for the channel here to ensure that other servers @@ -346,11 +346,11 @@ class ModuleChanProtect : public Module { if (cl[i]->GetExt("cm_founder_"+std::string(chan->name))) { - commands.push_back("M "+std::string(chan->name)+" +q "+std::string(cl[i]->nick)); + proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+q "+std::string(cl[i]->nick)); } if (cl[i]->GetExt("cm_protect_"+std::string(chan->name))) { - commands.push_back("M "+std::string(chan->name)+" +a "+std::string(cl[i]->nick)); + proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan,"+a "+std::string(cl[i]->nick)); } } return commands; -- 2.39.5