X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_away.cpp;h=98209217f7e3f401cab0cbcf9ff3d0d7188d2f1a;hb=2b3394855d5adddb16285b905503d9ffe5a1d963;hp=627feefc032579bba643df719ad5fbe7a7f36976;hpb=fea1a27cb96a114f698eedcf90401b78406108fb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp index 627feefc0..98209217f 100644 --- a/src/cmd_away.cpp +++ b/src/cmd_away.cpp @@ -2,37 +2,28 @@ * | 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. * * --------------------------------------------------- */ -#include -#include "inspircd_config.h" -#include "configreader.h" -#include "users.h" -#include "modules.h" -#include "commands.h" -#include "helperfuncs.h" +#include "inspircd.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" DllExport command_t* init_command(InspIRCd* Instance) +{ + return new cmd_away(Instance); +} -void cmd_away::Handle (const 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); user->WriteServ("306 %s :You have been marked as being away",user->nick); @@ -44,4 +35,5 @@ void cmd_away::Handle (const char** parameters, int pcnt, userrec *user) user->WriteServ("305 %s :You are no longer marked as being away",user->nick); FOREACH_MOD(I_OnCancelAway,OnCancelAway(user)); } + return CMD_SUCCESS; }