X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_showwhois.cpp;h=6086a08287071db2bb8c3c49756698839a144001;hb=b9e643261230d3b71517b0bc631c3b306e7246fa;hp=01563b44f3f29010fbbda6d6de722d3c7855ea0e;hpb=13b3f9a715853a2dcafc2bf516309496ee277931;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index 01563b44f..6086a0828 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -1,29 +1,33 @@ +using namespace std; + // showwhois module by typobox43 #include "users.h" #include "channels.h" #include "modules.h" +#include "helperfuncs.h" /* $ModDesc: Allows opers to set +W to see when a user uses WHOIS on them */ -Server *Srv; - -class ModuleShowwhois : public Module { +class ModuleShowwhois : public Module +{ + Server* Srv; public: - - ModuleShowwhois() { - - Srv = new Server; - + ModuleShowwhois(Server* Me) + : Module::Module(Me) + { + Srv = Me; Srv->AddExtendedMode('W',MT_CLIENT,true,0,0); - } - ~ModuleShowwhois() { - - delete Srv; + ~ModuleShowwhois() + { + } + void Implements(char* List) + { + List[I_OnWhois] = List[I_OnExtendedMode] = 1; } virtual Version GetVersion() @@ -31,52 +35,45 @@ class ModuleShowwhois : public Module { return Version(1,0,0,3,VF_STATIC); } - virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list& params) { - - if((type == MT_CLIENT) && (modechar == 'W')) { - + virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list& params) + { + if((type == MT_CLIENT) && (modechar == 'W')) + { return 1; - } return 0; - } - virtual void OnWhois(userrec* source, userrec* dest) { - - if(strchr(dest->modes,'W')) { - + virtual void OnWhois(userrec* source, userrec* dest) + { + if(strchr(dest->modes,'W')) + { WriteServ(dest->fd,"NOTICE %s :*** %s (%s@%s) did a /whois on you.",dest->nick,source->nick,source->ident,source->host); - } - } }; -class ModuleShowwhoisFactory : public ModuleFactory { - +class ModuleShowwhoisFactory : public ModuleFactory +{ public: - - ModuleShowwhoisFactory() { - + ModuleShowwhoisFactory() + { } - ~ModuleShowwhoisFactory() { - + ~ModuleShowwhoisFactory() + { } - virtual Module* CreateModule() { - - return new ModuleShowwhois; - + virtual Module* CreateModule(Server* Me) + { + return new ModuleShowwhois(Me); } }; -extern "C" void* init_module() { - +extern "C" void* init_module() +{ return new ModuleShowwhoisFactory; - }