]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands.cpp
Allow for nick!user@host in TOPIC information.
[user/henk/code/inspircd.git] / src / commands.cpp
index 581dde34be8df465adf2b1aa3a30481a83eb2c99..c31885483df4d404922c8678747078575898e409 100644 (file)
@@ -2,12 +2,9 @@
  *       | 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.
  *
@@ -32,16 +29,14 @@ bool InspIRCd::ULine(const char* server)
        return (find(Config->ulines.begin(),Config->ulines.end(),server) != Config->ulines.end());
 }
 
-int InspIRCd::OperPassCompare(const char* data,const char* input)
+int InspIRCd::OperPassCompare(const char* data,const char* input, int tagnum)
 {
        int MOD_RESULT = 0;
-       FOREACH_RESULT_I(this,I_OnOperCompare,OnOperCompare(data,input))
-       Log(DEBUG,"OperPassCompare: %d",MOD_RESULT);
+       FOREACH_RESULT_I(this,I_OnOperCompare,OnOperCompare(data, input, tagnum))
        if (MOD_RESULT == 1)
                return 0;
        if (MOD_RESULT == -1)
                return 1;
-       Log(DEBUG,"strcmp fallback: '%s' '%s' %d",data,input,strcmp(data,input));
        return strcmp(data,input);
 }
 
@@ -108,7 +103,6 @@ long InspIRCd::Duration(const char* str)
 
 bool InspIRCd::HostMatchesEveryone(const std::string &mask, userrec* user)
 {
-       char buffer[MAXBUF];
        char itrigger[MAXBUF];
        long matches = 0;
        
@@ -118,15 +112,18 @@ bool InspIRCd::HostMatchesEveryone(const std::string &mask, userrec* user)
        if (Config->ConfValueBool(Config->config_data, "insane","hostmasks", 0))
                return false;
        
-       for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
+       for (user_hash::iterator u = clientlist->begin(); u != clientlist->end(); u++)
        {
-               strlcpy(buffer,u->second->ident,MAXBUF);
-               charlcat(buffer,'@',MAXBUF);
-               strlcat(buffer,u->second->host,MAXBUF);
-               if (match(buffer,mask.c_str()))
+               if ((match(u->second->MakeHost(),mask.c_str(),true)) || (match(u->second->MakeHostIP(),mask.c_str(),true)))
+               {
                        matches++;
+               }
        }
-       float percent = ((float)matches / (float)clientlist.size()) * 100;
+
+       if (!matches)
+               return false;
+
+       float percent = ((float)matches / (float)clientlist->size()) * 100;
        if (percent > (float)atof(itrigger))
        {
                WriteOpers("*** \2WARNING\2: %s tried to set a G/K/E line mask of %s, which covers %.2f%% of the network!",user->nick,mask.c_str(),percent);
@@ -146,13 +143,16 @@ bool InspIRCd::IPMatchesEveryone(const std::string &ip, userrec* user)
        if (Config->ConfValueBool(Config->config_data, "insane","ipmasks",0))
                return false;
        
-       for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
+       for (user_hash::iterator u = clientlist->begin(); u != clientlist->end(); u++)
        {
                if (match(u->second->GetIPString(),ip.c_str(),true))
                        matches++;
        }
-       
-       float percent = ((float)matches / (float)clientlist.size()) * 100;
+
+       if (!matches)
+               return false;
+
+       float percent = ((float)matches / (float)clientlist->size()) * 100;
        if (percent > (float)atof(itrigger))
        {
                WriteOpers("*** \2WARNING\2: %s tried to set a Z line mask of %s, which covers %.2f%% of the network!",user->nick,ip.c_str(),percent);
@@ -172,13 +172,16 @@ bool InspIRCd::NickMatchesEveryone(const std::string &nick, userrec* user)
        if (Config->ConfValueBool(Config->config_data, "insane","nickmasks",0))
                return false;
 
-       for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
+       for (user_hash::iterator u = clientlist->begin(); u != clientlist->end(); u++)
        {
                if (match(u->second->nick,nick.c_str()))
                        matches++;
        }
-       
-       float percent = ((float)matches / (float)clientlist.size()) * 100;
+
+       if (!matches)
+               return false;
+
+       float percent = ((float)matches / (float)clientlist->size()) * 100;
        if (percent > (float)atof(itrigger))
        {
                WriteOpers("*** \2WARNING\2: %s tried to set a Q line mask of %s, which covers %.2f%% of the network!",user->nick,nick.c_str(),percent);