X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sethost.cpp;h=730909d6cc74f2d1b2af8b7ecfa22761ac706010;hb=e6d000042ea75d4e0485bec9564b47163a3ca414;hp=62b6bda833a153fc066809d4bdde97b05702427c;hpb=9cf56d917d92959701694477f7944d45ad2c38ed;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 62b6bda83..730909d6c 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -11,12 +11,6 @@ * --------------------------------------------------- */ -#include -#include -#include "users.h" -#include "channels.h" -#include "modules.h" - #include "inspircd.h" /* $ModDesc: Provides support for the SETHOST command */ @@ -32,6 +26,7 @@ class cmd_sethost : public command_t { this->source = "m_sethost.so"; syntax = ""; + TRANSLATE2(TR_TEXT, TR_END); } CmdResult Handle (const char** parameters, int pcnt, userrec *user) @@ -41,10 +36,15 @@ class cmd_sethost : public command_t { if (!hostmap[(unsigned char)*x]) { - user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in hostname"); + user->WriteServ("NOTICE "+std::string(user->nick)+" :*** SETHOST: Invalid characters in hostname"); return CMD_FAILURE; } } + if (len == 0) + { + user->WriteServ("NOTICE %s :*** SETHOST: Host must be specified", user->nick); + return CMD_FAILURE; + } if (len > 64) { user->WriteServ("NOTICE %s :*** SETHOST: Host too long",user->nick); @@ -98,32 +98,9 @@ class ModuleSetHost : public Module virtual Version GetVersion() { - return Version(1,1,0,1,VF_VENDOR,API_VERSION); - } - -}; - -class ModuleSetHostFactory : public ModuleFactory -{ - public: - ModuleSetHostFactory() - { - } - - ~ModuleSetHostFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleSetHost(Me); + return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION); } }; - -extern "C" DllExport void * init_module( void ) -{ - return new ModuleSetHostFactory; -} - +MODULE_INIT(ModuleSetHost)