]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
Change 974 numeric to 490 to avoid collision with Insp's failed to load module error
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index cdb01de4dfeb811385bc2424fb8c2843dd41f1bd..149795696cbf408618f8e04f6e625e8228c4894f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -26,33 +26,44 @@ using namespace std;
 /* $ModDesc: Provides support for the SETHOST command */
 
 Server *Srv;
-        
-void handle_sethost(char **parameters, int pcnt, userrec *user)
+
+class cmd_sethost : public command_t
 {
-       for (unsigned int x = 0; x < strlen(parameters[0]); x++)
+ public:
+       cmd_sethost() : command_t("SETHOST",'o',1)
        {
-               if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.'))
+               this->source = "m_sethost.so";
+       }
+
+       void Handle (char **parameters, int pcnt, userrec *user)
+       {
+               for (unsigned int x = 0; x < strlen(parameters[0]); x++)
                {
-                       if (((parameters[0][x] < '0') || (parameters[0][x]> '9')) && (parameters[0][x] != '-'))
+                       if (((tolower(parameters[0][x]) < 'a') || (tolower(parameters[0][x]) > 'z')) && (parameters[0][x] != '.'))
                        {
-                               Srv->SendTo(NULL,user,"NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname");
-                               return;
+                               if (((parameters[0][x] < '0') || (parameters[0][x]> '9')) && (parameters[0][x] != '-'))
+                               {
+                                       Srv->SendTo(NULL,user,"NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname");
+                                       return;
+                               }
                        }
                }
+               Srv->ChangeHost(user,parameters[0]);
+               Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0]));
        }
-       Srv->ChangeHost(user,parameters[0]);
-       Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0]));
-}
+};
 
 
 class ModuleSetHost : public Module
 {
+       cmd_sethost*    mycommand;
  public:
        ModuleSetHost(Server* Me)
                : Module::Module(Me)
        {
                Srv = Me;
-               Srv->AddCommand("SETHOST",handle_sethost,'o',1,"m_sethost.so");
+               mycommand = new cmd_sethost();
+               Srv->AddCommand(mycommand);
        }
        
        virtual ~ModuleSetHost()