summaryrefslogtreecommitdiff
path: root/src/modules/m_noctcp.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-09 15:32:37 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-09 15:32:37 +0000
commit8d3cfd9c6b4c01dc9b5133ad4ce735bf03126edd (patch)
tree75ac596d2b69ce08b53fb0e64c57c09657cd6973 /src/modules/m_noctcp.cpp
parent9d8022a06563e9a11b6d16b139090cde82fad877 (diff)
Port to new api
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4225 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_noctcp.cpp')
-rw-r--r--src/modules/m_noctcp.cpp51
1 files changed, 34 insertions, 17 deletions
diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp
index 7d69a92b6..1755f8e41 100644
--- a/src/modules/m_noctcp.cpp
+++ b/src/modules/m_noctcp.cpp
@@ -24,9 +24,38 @@ using namespace std;
/* $ModDesc: Provides support for unreal-style channel mode +c */
+class NoCTCP : public ModeHandler
+{
+ public:
+ NoCTCP() : ModeHandler('C', 0, 0, false, MODETYPE_CHANNEL, false) { }
+
+ ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
+ {
+ if (adding)
+ {
+ if (!channel->IsModeSet('C'))
+ {
+ channel->SetMode('C',true);
+ return MODEACTION_ALLOW;
+ }
+ }
+ else
+ {
+ if (channel->IsModeSet('C'))
+ {
+ channel->SetMode('C',false);
+ return MODEACTION_ALLOW;
+ }
+ }
+
+ return MODEACTION_DENY;
+ }
+};
+
class ModuleNoCTCP : public Module
{
Server *Srv;
+ NoCTCP* nc;
public:
@@ -34,12 +63,13 @@ class ModuleNoCTCP : public Module
: Module::Module(Me)
{
Srv = Me;
- Srv->AddExtendedMode('C',MT_CHANNEL,false,0,0);
+ nc = new NoCTCP();
+ Srv->AddMode(nc, 'C');
}
void Implements(char* List)
{
- List[I_OnExtendedMode] = List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
+ List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
}
virtual void On005Numeric(std::string &output)
@@ -71,25 +101,12 @@ class ModuleNoCTCP : public Module
}
return 0;
}
-
- virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
- {
- // check if this is our mode character...
- if ((modechar == 'C') && (type == MT_CHANNEL))
- {
- log(DEBUG,"Allowing C change");
- return 1;
- }
- else
- {
- return 0;
- }
- }
virtual ~ModuleNoCTCP()
{
+ DELETE(nc);
}
-
+
virtual Version GetVersion()
{
return Version(1,0,0,0,VF_STATIC|VF_VENDOR);