X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_away.cpp;h=7a780c5a5867c940aed9553c93e23f5950ae60d3;hb=6bc3d71946b339a5a10ca621b029fe8a5b180d68;hp=8814259af78898107afb36c661d5f6c66e38dd16;hpb=8e08c30339a0c8991e573586f1b5dab05628a7a2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp index 8814259af..7a780c5a5 100644 --- a/src/cmd_away.cpp +++ b/src/cmd_away.cpp @@ -2,56 +2,40 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * Inspire is copyright (C) 2002-2005 ChatSpike-Dev. - * E-mail: - * - * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits * - * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -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 "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_away(Instance); +} -void cmd_away::Handle (char **parameters, int pcnt, userrec *user) +/** Handle /AWAY + */ +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 { - strlcpy(user->awaymsg,"",MAXAWAY); - WriteServ(user->fd,"305 %s :You are no longer marked as being away",user->nick); + *user->awaymsg = 0; + user->WriteServ("305 %s :You are no longer marked as being away",user->nick); + FOREACH_MOD(I_OnCancelAway,OnCancelAway(user)); } + return CMD_SUCCESS; } - -