]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
Get rid of a bunch of memory-wasting C-style strings
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index 8e397c0e13589946eedd17bb72b70f571d7a2da3..cd9368d3c258cdbf1aa8e1cb16a7cebbdc77cda9 100644 (file)
@@ -22,9 +22,9 @@ class CommandSethost : public Command
  private:
        char* hostmap;
  public:
-       CommandSethost (InspIRCd* Instance, Module* Creator, char* hmap) : Command(Instance,Creator,"SETHOST","o",1), hostmap(hmap)
+       CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
        {
-               syntax = "<new-hostname>";
+               flags_needed = 'o'; syntax = "<new-hostname>";
                TRANSLATE2(TR_TEXT, TR_END);
        }
 
@@ -66,8 +66,8 @@ class ModuleSetHost : public Module
        CommandSethost cmd;
        char hostmap[256];
  public:
-       ModuleSetHost(InspIRCd* Me)
-               : Module(Me), cmd(Me, this, hostmap)
+       ModuleSetHost()
+               : cmd(this, hostmap)
        {
                OnRehash(NULL);
                ServerInstance->AddCommand(&cmd);
@@ -78,7 +78,7 @@ class ModuleSetHost : public Module
 
        void OnRehash(User* user)
        {
-               ConfigReader Conf(ServerInstance);
+               ConfigReader Conf;
                std::string hmap = Conf.ReadValue("hostname", "charmap", 0);
 
                if (hmap.empty())
@@ -95,7 +95,7 @@ class ModuleSetHost : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETHOST command", VF_VENDOR, API_VERSION);
        }
 
 };