]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_vhost.cpp
Allow support for multiple dns results per request. This is a significant change...
[user/henk/code/inspircd.git] / src / modules / m_vhost.cpp
index 82286748863fa716c572865986e873083a9e0583..3ce910456bdde89c1acdb251094bf7a425531bcd 100644 (file)
@@ -38,16 +38,18 @@ class cmd_vhost : public command_t
                        std::string mask = Conf->ReadValue("vhost","host",index);
                        std::string username = Conf->ReadValue("vhost","user",index);
                        std::string pass = Conf->ReadValue("vhost","pass",index);
+
                        if ((!strcmp(parameters[0],username.c_str())) && (!strcmp(parameters[1],pass.c_str())))
                        {
                                if (!mask.empty())
                                {
                                        user->WriteServ("NOTICE "+std::string(user->nick)+" :Setting your VHost: " + mask);
                                        user->ChangeDisplayedHost(mask.c_str());
-                                       return CMD_FAILURE;
+                                       return CMD_LOCALONLY;
                                }
                        }
                }
+
                user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid username or password.");
                return CMD_FAILURE;
        }
@@ -91,29 +93,5 @@ class ModuleVHost : public Module
        
 };
 
-// stuff down here is the module-factory stuff. For basic modules you can ignore this.
-
-class ModuleVHostFactory : public ModuleFactory
-{
- public:
-       ModuleVHostFactory()
-       {
-       }
-       
-       ~ModuleVHostFactory()
-       {
-       }
-       
-       virtual Module * CreateModule(InspIRCd* Me)
-       {
-               return new ModuleVHost(Me);
-       }
-       
-};
-
-
-extern "C" DllExport void * init_module( void )
-{
-       return new ModuleVHostFactory;
-}
+MODULE_INIT(ModuleVHost)