1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
7 * <brain@chatspike.net>
8 * <Craig@chatspike.net>
10 * Written by Craig Edwards, Craig McLure, and others.
11 * This program is free but copyrighted software; see
12 * the file COPYING for details.
14 * ---------------------------------------------------
20 #include "helperfuncs.h"
21 #include "cmd_names.h"
23 extern InspIRCd* ServerInstance;
25 void cmd_names::Handle (char **parameters, int pcnt, userrec *user)
31 WriteServ(user->fd,"366 %s * :End of /NAMES list.",user->nick);
35 if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-1,0))
37 c = FindChan(parameters[0]);
40 if ((c->modes[CM_SECRET]) && (!c->HasUser(user)))
42 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, c->name);
46 WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, c->name);
50 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]);