X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_restrictchans.cpp;h=8fac7527bef64b1f56648aee151a374fe6c20231;hb=46e56dedd37abe33af4e8b970d5b83729dc1ef05;hp=8e60359f6860a1a7e4341fc8b24fc55d8bb5c50d;hpb=7d93921aabd9c608821baec8a871aff844dfae49;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_restrictchans.cpp b/src/modules/m_restrictchans.cpp index 8e60359f6..8fac7527b 100644 --- a/src/modules/m_restrictchans.cpp +++ b/src/modules/m_restrictchans.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * InspIRCd: (C) 2002-2010 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see @@ -17,29 +17,23 @@ class ModuleRestrictChans : public Module { - - - std::map allowchans; + std::set allowchans; void ReadConfig() { - ConfigReader* MyConf = new ConfigReader(ServerInstance); allowchans.clear(); - for (int i = 0; i < MyConf->Enumerate("allowchannel"); i++) + ConfigTagList tags = ServerInstance->Config->ConfTags("allowchannel"); + for(ConfigIter i = tags.first; i != tags.second; ++i) { - std::string txt; - txt = MyConf->ReadValue("allowchannel", "name", i); - irc::string channel = txt.c_str(); - allowchans[channel] = 1; + ConfigTag* tag = i->second; + std::string txt = tag->getString("name"); + allowchans.insert(txt.c_str()); } - delete MyConf; } public: - ModuleRestrictChans(InspIRCd* Me) - : Module(Me) + ModuleRestrictChans() { - ReadConfig(); Implementation eventlist[] = { I_OnUserPreJoin, I_OnRehash }; ServerInstance->Modules->Attach(eventlist, this, 2); @@ -76,7 +70,7 @@ class ModuleRestrictChans : public Module virtual Version GetVersion() { - return Version("Only opers may create new channels if this module is loaded",VF_VENDOR,API_VERSION); + return Version("Only opers may create new channels if this module is loaded",VF_VENDOR); } };