]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/bancache.h
CullList -> CullItem *
[user/henk/code/inspircd.git] / include / bancache.h
index 2ae740ece32cb19cb393deda9b7f7f4d52124235..d69306d7acd8c48d8b4a48c55a5991bf6121602f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -24,6 +24,7 @@ class CoreExport BanCacheHit : public classbase
        std::string Type;
        std::string Reason;
        std::string IP;
+       time_t Expiry;
 
        BanCacheHit(InspIRCd *Instance, const std::string &ip, const std::string &type, const std::string &reason)
        {
@@ -31,6 +32,17 @@ class CoreExport BanCacheHit : public classbase
                this->Type = type;
                this->Reason = reason;
                this->IP = ip;
+               this->Expiry = time(NULL) + 60; // XXX changeme
+       }
+
+       // overridden to allow custom time
+       BanCacheHit(InspIRCd *Instance, const std::string &ip, const std::string &type, const std::string &reason, time_t seconds)
+       {
+               ServerInstance = Instance;
+               this->Type = type;
+               this->Reason = reason;
+               this->IP = ip;
+               this->Expiry = time(NULL) + seconds;
        }
 };
 
@@ -57,6 +69,12 @@ class CoreExport BanCacheManager : public classbase
        BanCacheHit *GetHit(const std::string &ip);
        bool RemoveHit(BanCacheHit *b);
 
+       /** Removes all entries of a given type, either positive or negative. Returns the number of hits removed.
+        * @param type The type of bancache entries to remove (e.g. 'G')
+        * @param positive Remove either positive (true) or negative (false) hits.
+        */
+       unsigned int RemoveEntries(const std::string &type, bool positive);
+
        BanCacheManager(InspIRCd *Instance)
        {
                this->ServerInstance = Instance;