summaryrefslogtreecommitdiff
path: root/src/modules/m_noctcp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_noctcp.cpp')
-rw-r--r--src/modules/m_noctcp.cpp90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp
new file mode 100644
index 000000000..3a7959277
--- /dev/null
+++ b/src/modules/m_noctcp.cpp
@@ -0,0 +1,90 @@
+#include <stdio.h>
+
+#include "users.h"
+#include "channels.h"
+#include "modules.h"
+
+/* $ModDesc: Provides support for unreal-style channel mode +Q */
+
+class ModuleNoCTCP : public Module
+{
+ Server *Srv;
+
+ public:
+
+ ModuleNoCTCP()
+ {
+ Srv = new Server;
+ Srv->AddExtendedMode('C',MT_CHANNEL,false,0,0);
+ }
+
+ virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string text)
+ {
+ if (target_type == TARGET_CHANNEL)
+ {
+ chanrec* c = (chanrec*)dest;
+ if (c->IsCustomModeSet('C'))
+ {
+ if ((text.length()) && (text[0] == '\1'))
+ {
+ WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
+ return 1;
+ }
+ }
+ }
+ return 0;
+ }
+
+ virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string text)
+ {
+ if (target_type == TARGET_CHANNEL)
+ {
+ chanrec* c = (chanrec*)dest;
+ if (c->IsCustomModeSet('C'))
+ {
+ if ((text.length()) && (text[0] == '\1'))
+ {
+ WriteServ(user->fd,"492 %s %s :Can't send CTCP to channel (+C set)",user->nick, c->name);
+ return 1;
+ }
+ }
+ }
+ return 0;
+ }
+
+ virtual ~ModuleNoCTCP()
+ {
+ delete Srv;
+ }
+
+ virtual Version GetVersion()
+ {
+ return Version(1,0,0,0);
+ }
+};
+
+
+class ModuleNoCTCPFactory : public ModuleFactory
+{
+ public:
+ ModuleNoCTCPFactory()
+ {
+ }
+
+ ~ModuleNoCTCPFactory()
+ {
+ }
+
+ virtual Module * CreateModule()
+ {
+ return new ModuleNoCTCP;
+ }
+
+};
+
+
+extern "C" void * init_module( void )
+{
+ return new ModuleNoCTCPFactory;
+}
+