]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
m_mlock Remove unnecessary iteration
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index ffbc66ddcf4bb2a2db53cff629f227ccf7f7a912..8bab2c3b4e98f6631928fbfeb3bc1634acf1e960 100644 (file)
@@ -1,16 +1,24 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2004-2006 Craig Edwards <craigedwards@brainbox.cc>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+
 #include "inspircd.h"
 
 /* $ModDesc: Provides support for the SETHOST command */
@@ -66,8 +74,8 @@ class ModuleSetHost : public Module
        CommandSethost cmd;
        char hostmap[256];
  public:
-       ModuleSetHost(InspIRCd* Me)
-               : Module(Me), cmd(this, hostmap)
+       ModuleSetHost()
+               : cmd(this, hostmap)
        {
                OnRehash(NULL);
                ServerInstance->AddCommand(&cmd);
@@ -78,7 +86,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 +103,7 @@ class ModuleSetHost : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the SETHOST command", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETHOST command", VF_VENDOR);
        }
 
 };