summaryrefslogtreecommitdiff
path: root/include/bancache.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bancache.h')
-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;