X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setidle.cpp;h=f6584aef6bb2b9e0f99519e72e1e62077154ee33;hb=d54fd9b1e6b31f69332a9241b5f17330c0ad61e0;hp=fc8ad93472e20706b135241318b225d9b2d11db8;hpb=1383dba43e463f292aea094d01f62f355946049d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setidle.cpp b/src/modules/m_setidle.cpp index fc8ad9347..f6584aef6 100644 --- a/src/modules/m_setidle.cpp +++ b/src/modules/m_setidle.cpp @@ -21,33 +21,35 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" -#include "helperfuncs.h" + +#include "inspircd.h" /* $ModDesc: Allows opers to set their idle time */ -Server *Srv = NULL; + class cmd_setidle : public command_t { public: - cmd_setidle () : command_t("SETIDLE", 'o', 1) + cmd_setidle (InspIRCd* Instance) : command_t(Instance,"SETIDLE", 'o', 1) { this->source = "m_setidle.so"; + syntax = ""; } - void Handle (char **parameters, int pcnt, userrec *user) + void Handle (const char** parameters, int pcnt, userrec *user) { if (atoi(parameters[0]) < 1) { - WriteServ(user->fd,"948 %s :Invalid idle time.",user->nick); + user->WriteServ("948 %s :Invalid idle time.",user->nick); return; } user->idle_lastmsg = time(NULL) - atoi(parameters[0]); // minor tweak - we cant have signon time shorter than our idle time! if (user->signon > user->idle_lastmsg) user->signon = user->idle_lastmsg; - Srv->SendOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds"); - WriteServ(user->fd,"944 %s :Idle time set.",user->nick); + ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds"); + user->WriteServ("944 %s :Idle time set.",user->nick); } }; @@ -56,12 +58,12 @@ class ModuleSetIdle : public Module { cmd_setidle* mycommand; public: - ModuleSetIdle(Server* Me) + ModuleSetIdle(InspIRCd* Me) : Module::Module(Me) { - Srv = Me; - mycommand = new cmd_setidle(); - Srv->AddCommand(mycommand); + + mycommand = new cmd_setidle(ServerInstance); + ServerInstance->AddCommand(mycommand); } virtual ~ModuleSetIdle() @@ -88,7 +90,7 @@ class ModuleSetIdleFactory : public ModuleFactory { } - virtual Module * CreateModule(Server* Me) + virtual Module * CreateModule(InspIRCd* Me) { return new ModuleSetIdle(Me); }