summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 20:57:24 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-08 20:57:24 +0000
commit793d2364d907a73918eef1166b60f964ed0d384b (patch)
tree1ae59157a00fd615ba659798be1b81d1a1c35b27 /src/modules
parentf88beda4d44fde34a56ce85bb3e9cbc045856dec (diff)
Convert u_listmode and m_banexception to new api
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4189 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_banexception.cpp40
1 files changed, 36 insertions, 4 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp
index fa0ff4c1d..113af0b6b 100644
--- a/src/modules/m_banexception.cpp
+++ b/src/modules/m_banexception.cpp
@@ -4,6 +4,7 @@
#include "users.h"
#include "channels.h"
#include "modules.h"
+#include "mode.h"
#include "helperfuncs.h"
#include "u_listmode.h"
@@ -16,17 +17,28 @@
// The +e channel mode takes a nick!ident@host, glob patterns allowed,
// and if a user matches an entry on the +e list then they can join the channel, overriding any (+b) bans set on them
+class BanException : public ListModeBase
+{
+ public:
+ BanException(Server* serv) : ListModeBase(serv, 'e', "End of Channel Exception List", "348", "349") { }
+};
-class ModuleBanException : public ListModeBaseModule
+
+class ModuleBanException : public Module
{
+ BanException* be;
+ Server* Srv;
+
public:
- ModuleBanException(Server* serv) : ListModeBaseModule::ListModeBaseModule(serv, 'e', "End of Channel Exception List", "348", "349")
+ ModuleBanException(Server* serv) : Module(serv)
{
+ be = new BanException(serv);
+ Srv = serv;
}
virtual void Implements(char* List)
{
- this->DoImplements(List);
+ be->DoImplements(List);
List[I_On005Numeric] = List[I_OnCheckBan] = 1;
}
@@ -40,7 +52,7 @@ public:
{
if(chan != NULL)
{
- modelist* list = (modelist*)chan->GetExt(infokey);
+ modelist* list = (modelist*)chan->GetExt(be->GetInfoKey());
Srv->Log(DEBUG, std::string(user->nick)+" is trying to join "+std::string(chan->name)+", checking for ban exceptions");
if(list)
@@ -55,6 +67,26 @@ public:
}
return 0;
}
+
+ virtual void OnCleanup(int target_type, void* item)
+ {
+ be->DoCleanup(target_type, item);
+ }
+
+ virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
+ {
+ be->DoSyncChannel(chan, proto, opaque);
+ }
+
+ virtual void OnChannelDelete(chanrec* chan)
+ {
+ be->DoChannelDelete(chan);
+ }
+
+ virtual void OnRehash(const std::string &param)
+ {
+ be->DoRehash();
+ }
virtual Version GetVersion()
{