X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operjoin.cpp;h=d12bc193225bbade732b1dc028bc40cf77ceb86b;hb=fed58f5c25915d60d40c0f407914ff7381902f9d;hp=518eeb0098225f741d7d4e19c79825d95249ff04;hpb=e295d91ffd44876a9ae5279269d5a4ca4e15afcc;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index 518eeb009..d12bc1932 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -11,10 +11,10 @@ * --------------------------------------------------- */ +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" /* $ModDesc: Forces opers to join the specified channel(s) on oper-up */ @@ -22,9 +22,7 @@ class ModuleOperjoin : public Module { private: std::string operChan; - std::vector operChans; - ConfigReader* conf; - + std::vector operChans; int tokenize(const string &str, std::vector &tokens) { @@ -46,15 +44,9 @@ class ModuleOperjoin : public Module } public: - ModuleOperjoin(InspIRCd* Me) - : Module::Module(Me) + ModuleOperjoin(InspIRCd* Me) : Module(Me) { - - conf = new ConfigReader(ServerInstance); - operChan = conf->ReadValue("operjoin", "channel", 0); - operChans.clear(); - if (!operChan.empty()) - tokenize(operChan,operChans); + OnRehash(NULL, ""); } void Implements(char* List) @@ -64,17 +56,18 @@ class ModuleOperjoin : public Module virtual void OnRehash(userrec* user, const std::string ¶meter) { - DELETE(conf); - conf = new ConfigReader(ServerInstance); + ConfigReader* conf = new ConfigReader(ServerInstance); + operChan = conf->ReadValue("operjoin", "channel", 0); operChans.clear(); if (!operChan.empty()) tokenize(operChan,operChans); + + DELETE(conf); } virtual ~ModuleOperjoin() { - DELETE(conf); } virtual Version GetVersion() @@ -94,24 +87,4 @@ class ModuleOperjoin : public Module }; -class ModuleOperjoinFactory : public ModuleFactory -{ - public: - ModuleOperjoinFactory() - { - } - - ~ModuleOperjoinFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleOperjoin(Me); - } -}; - -extern "C" void * init_module( void ) -{ - return new ModuleOperjoinFactory; -} +MODULE_INIT(ModuleOperjoin)