]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_check.cpp
This needs some general QA-ing. Add support to new parser (introduced in 1.1) for...
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
index 6a4bcc84f82f3ad46cccf483e4f7ac46ce9b6955..5304347c2d0375eb160fcace2bd8584adcb6f204 100644 (file)
@@ -2,20 +2,15 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-using namespace std;
-
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
@@ -67,6 +62,7 @@ class cmd_check : public command_t
                        user->WriteServ(checkstr + " realnuh " + targuser->GetFullRealHost());
                        user->WriteServ(checkstr + " realname " + targuser->fullname);
                        user->WriteServ(checkstr + " modes +" + targuser->FormatModes());
+                       user->WriteServ(checkstr + " snomasks +" + targuser->FormatNoticeMasks());
                        user->WriteServ(checkstr + " server " + targuser->server);
                        if (targuser->awaymsg[0] != 0)
                        {
@@ -76,7 +72,7 @@ class cmd_check : public command_t
                        if (targuser->oper[0] != 0)
                        {
                                /* user is an oper of type ____ */
-                               user->WriteServ(checkstr + " opertype " + targuser->oper);
+                               user->WriteServ(checkstr + " opertype " + irc::Spacify(targuser->oper));
                        }
                        if (IS_LOCAL(targuser))
                        {
@@ -123,7 +119,7 @@ class cmd_check : public command_t
                                /*
                                 * Unlike Asuka, I define a clone as coming from the same host. --w00t
                                 */
-                               snprintf(tmpbuf, MAXBUF, "%d    %s%s (%s@%s) %s ", i->second->GlobalCloneCount(), targchan->GetAllPrefixChars(i->second), i->second->nick, i->second->ident, i->second->dhost, i->second->fullname);
+                               snprintf(tmpbuf, MAXBUF, "%lu    %s%s (%s@%s) %s ", i->second->GlobalCloneCount(), targchan->GetAllPrefixChars(i->second), i->second->nick, i->second->ident, i->second->dhost, i->second->fullname);
                                user->WriteServ(checkstr + " member " + tmpbuf);
                        }
                }
@@ -133,7 +129,7 @@ class cmd_check : public command_t
                        long x = 0;
 
                        /* hostname or other */
-                       for (user_hash::const_iterator a = ServerInstance->clientlist.begin(); a != ServerInstance->clientlist.end(); a++)
+                       for (user_hash::const_iterator a = ServerInstance->clientlist->begin(); a != ServerInstance->clientlist->end(); a++)
                        {
                                if (match(a->second->host, parameters[0]) || match(a->second->dhost, parameters[0]))
                                {
@@ -141,7 +137,7 @@ class cmd_check : public command_t
                                        user->WriteServ(checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
                                }
                                /* IP address */
-                               else if (match(a->second->GetIPString(), parameters[0]))
+                               else if (match(a->second->GetIPString(), parameters[0], true))
                                {
                                        /* same IP. */
                                        user->WriteServ(checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
@@ -153,7 +149,7 @@ class cmd_check : public command_t
 
                user->WriteServ(checkstr + " END " + std::string(parameters[0]));
 
-               return CMD_SUCCESS;
+               return CMD_LOCALONLY;
        }
 };