X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_away.cpp;h=ce4628858043f5eebb4c11b128ce779d587feaea;hb=4cc6e5e14fdbde499481dbab5ab2ad1257b8af9c;hp=4623dc7f78a2ca7e860a74f8b948802f278ba987;hpb=ecee8268b239c22cc68dd624779aae84e6020939;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp index 4623dc7f7..ce4628858 100644 --- a/src/cmd_away.cpp +++ b/src/cmd_away.cpp @@ -2,58 +2,38 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 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 "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" DllExport Command* init_command(InspIRCd* Instance) +{ + return new CommandAway(Instance); +} -void cmd_away::Handle (char **parameters, int pcnt, userrec *user) +/** Handle /AWAY + */ +CmdResult CommandAway::Handle (const char** parameters, int pcnt, User *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; } - -