X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_ison.cpp;h=851f8e171fd774a783c21d8d2f7eb18055283a62;hb=e2322b3feb0b70a5c5d74fff4a9ab2bd7c85bcac;hp=4c840c748715b9b092ac55063315f52753f0bd13;hpb=088ec6caed6ff877169fcbd9914b8653374f6829;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_ison.cpp b/src/cmd_ison.cpp index 4c840c748..851f8e171 100644 --- a/src/cmd_ison.cpp +++ b/src/cmd_ison.cpp @@ -2,26 +2,27 @@ * | 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 "inspircd_config.h" -#include "ctables.h" #include "users.h" -#include "commands.h" -#include "helperfuncs.h" +#include "inspircd.h" #include "commands/cmd_ison.h" -void cmd_ison::Handle (char **parameters, int pcnt, userrec *user) +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_ison(Instance); +} + +/** Handle /ISON + */ +CmdResult cmd_ison::Handle (const char** parameters, int pcnt, userrec *user) { char retbuf[MAXBUF]; userrec *u; @@ -30,7 +31,7 @@ void cmd_ison::Handle (char **parameters, int pcnt, userrec *user) for (int i = 0; i < pcnt; i++) { - u = Find(parameters[i]); + u = ServerInstance->FindNick(parameters[i]); if (u) { @@ -39,5 +40,8 @@ void cmd_ison::Handle (char **parameters, int pcnt, userrec *user) } } - WriteServ(user->fd, retbuf); + user->WriteServ(retbuf); + + return CMD_SUCCESS; } +