X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_sethost.cpp;h=981efbbd810a7c77cba114834b89c03975bcf735;hb=05cc48f1894e40f8a34496bf54a60d8b911e6a5e;hp=7ea03ebbca1bd0ac12487f9ec31470869a32917f;hpb=b57c7f4e466f72fdd2ac3deca42caa1ea7748338;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 7ea03ebbc..981efbbd8 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -17,19 +17,19 @@ /** Handle /SETHOST */ -class cmd_sethost : public Command +class CommandSethost : public Command { private: char* hostmap; public: - cmd_sethost (InspIRCd* Instance, char* hmap) : Command(Instance,"SETHOST",'o',1), hostmap(hmap) + CommandSethost (InspIRCd* Instance, char* hmap) : Command(Instance,"SETHOST","o",1), hostmap(hmap) { this->source = "m_sethost.so"; syntax = ""; TRANSLATE2(TR_TEXT, TR_END); } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const char* const* parameters, int pcnt, User *user) { size_t len = 0; for (const char* x = parameters[0]; *x; x++, len++) @@ -52,7 +52,7 @@ class cmd_sethost : public Command } if (user->ChangeDisplayedHost(parameters[0])) { - ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+user->dhost); + ServerInstance->SNO->WriteToSnoMask('A', std::string(user->nick)+" used SETHOST to change their displayed host to "+user->dhost); return CMD_SUCCESS; } @@ -63,21 +63,19 @@ class cmd_sethost : public Command class ModuleSetHost : public Module { - cmd_sethost* mycommand; + CommandSethost* mycommand; char hostmap[256]; public: ModuleSetHost(InspIRCd* Me) : Module(Me) { OnRehash(NULL,""); - mycommand = new cmd_sethost(ServerInstance, hostmap); + mycommand = new CommandSethost(ServerInstance, hostmap); ServerInstance->AddCommand(mycommand); + Implementation eventlist[] = { I_OnRehash }; + ServerInstance->Modules->Attach(eventlist, this, 1); } - void Implements(char* List) - { - List[I_OnRehash] = 1; - } void OnRehash(User* user, const std::string ¶meter) { @@ -98,7 +96,7 @@ class ModuleSetHost : public Module virtual Version GetVersion() { - return Version(1, 1, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION); + return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION); } };