summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-15 15:59:05 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-15 15:59:05 +0000
commit8bc8dc92e44bd371872b159ac5583b6788a8110d (patch)
treee2613228630b41af2e5eb9be8888f8a092b5ecf9 /include
parent8d278b5d9cba6c5b41477994e7a567c9218d2c3f (diff)
Add another BanCache stub. I'm not writing it yet as the storage of entries has not yet been finalised.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8595 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/bancache.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/bancache.h b/include/bancache.h
index 2ae740ece..cabd85365 100644
--- a/include/bancache.h
+++ b/include/bancache.h
@@ -57,6 +57,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.
+ */
+ int RemoveEntries(const std::string &type, bool positive);
+
BanCacheManager(InspIRCd *Instance)
{
this->ServerInstance = Instance;