]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_userhost.cpp
Add comments
[user/henk/code/inspircd.git] / src / cmd_userhost.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "commands/cmd_userhost.h"
17
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
19 {
20         return new cmd_userhost(Instance);
21 }
22
23 CmdResult cmd_userhost::Handle (const char** parameters, int pcnt, userrec *user)
24 {
25         std::string retbuf = std::string("302 ") + user->nick + " :";
26
27         
28         for (int i = 0; i < pcnt; i++)
29         {
30                 userrec *u = ServerInstance->FindNick(parameters[i]);
31
32                 if ((u) && (u->registered == REG_ALL))
33                 {
34                         retbuf = retbuf + u->nick;
35
36                         if (IS_OPER(u))
37                         {
38                                 retbuf = retbuf + "*=+";
39                         }
40                         else
41                         {
42                                 retbuf = retbuf + "=+";
43                         }
44
45                         retbuf = retbuf + u->ident + "@";
46
47                         if (IS_OPER(user))
48                         {
49                                 retbuf = retbuf + u->host;
50                         }
51                         else
52                         {
53                                 retbuf = retbuf + u->dhost;
54                         }
55
56                         retbuf = retbuf + " ";
57                 }
58         }
59
60         user->WriteServ(retbuf);
61
62         return CMD_SUCCESS;
63 }