diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-15 15:59:05 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-15 15:59:05 +0000 |
commit | 8bc8dc92e44bd371872b159ac5583b6788a8110d (patch) | |
tree | e2613228630b41af2e5eb9be8888f8a092b5ecf9 | |
parent | 8d278b5d9cba6c5b41477994e7a567c9218d2c3f (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
-rw-r--r-- | include/bancache.h | 6 | ||||
-rw-r--r-- | src/bancache.cpp | 5 |
2 files changed, 11 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; diff --git a/src/bancache.cpp b/src/bancache.cpp index bfa1bde11..b4fccbbf8 100644 --- a/src/bancache.cpp +++ b/src/bancache.cpp @@ -63,6 +63,11 @@ bool BanCacheManager::RemoveHit(BanCacheHit *b) return true; } +int BanCacheManager::RemoveEntries(const std::string &type, bool positive) +{ + return 0; +} + void BanCacheManager::RehashCache() { BanCacheHash* NewHash = new BanCacheHash(); |