X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_away.cpp;h=aecc711e4e329e5973ce504172b51e9fbd829018;hb=dc7927e17cffb2ee3c50ef9f037ed873d378f679;hp=65e613acbe8b232ba18f0becfaff2ce2a79bbfcd;hpb=a8aace58064fe3552b905567e4eab0bd4d4aba14;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp index 65e613acb..aecc711e4 100644 --- a/src/cmd_away.cpp +++ b/src/cmd_away.cpp @@ -14,50 +14,31 @@ * --------------------------------------------------- */ -using namespace std; - -#include "inspircd_config.h" -#include "inspircd.h" -#include "inspircd_io.h" -#include -#include -#include -#include -#include +#include "configreader.h" #include "users.h" -#include "ctables.h" -#include "globals.h" #include "modules.h" -#include "message.h" -#include "commands.h" -#include "inspstring.h" -#include "dnsqueue.h" -#include "helperfuncs.h" -#include "hashcomp.h" -#include "typedefs.h" -#include "cmd_away.h" +#include "commands/cmd_away.h" + -extern ServerConfig* Config; -extern InspIRCd* ServerInstance; -extern int MODCOUNT; -extern std::vector modules; -extern std::vector factory; +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_away(Instance); +} -void cmd_away::Handle (char **parameters, int pcnt, userrec *user) +CmdResult cmd_away::Handle (const char** parameters, int pcnt, userrec *user) { - if (pcnt) + if ((pcnt) && (*parameters[0])) { strlcpy(user->awaymsg,parameters[0],MAXAWAY); - WriteServ(user->fd,"306 %s :You have been marked as being away",user->nick); + user->WriteServ("306 %s :You have been marked as being away",user->nick); FOREACH_MOD(I_OnSetAway,OnSetAway(user)); } else { *user->awaymsg = 0; - WriteServ(user->fd,"305 %s :You are no longer marked as being away",user->nick); + user->WriteServ("305 %s :You are no longer marked as being away",user->nick); FOREACH_MOD(I_OnCancelAway,OnCancelAway(user)); } + return CMD_SUCCESS; } - -