1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 #include "commands/cmd_userhost.h"
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
20 return new cmd_userhost(Instance);
23 CmdResult cmd_userhost::Handle (const char** parameters, int pcnt, userrec *user)
25 std::string retbuf = std::string("302 ") + user->nick + " :";
28 for (int i = 0; i < pcnt; i++)
30 userrec *u = ServerInstance->FindNick(parameters[i]);
32 if ((u) && (u->registered == REG_ALL))
34 retbuf = retbuf + u->nick;
38 retbuf = retbuf + "*=+";
42 retbuf = retbuf + "=+";
45 retbuf = retbuf + u->ident + "@";
49 retbuf = retbuf + u->host;
53 retbuf = retbuf + u->dhost;
56 retbuf = retbuf + " ";
60 user->WriteServ(retbuf);