diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 13:23:15 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 13:23:15 +0000 |
commit | 9f936a78301ebc7e42c0879101fe20599285b84c (patch) | |
tree | 2a89ce08e4c98ebf708adaf386739e3cdc8d8d5d /src/inspircd.cpp | |
parent | cce3669a3a6c2011f202795c6333db77009cedd7 (diff) |
Instantiate BanCache in InspIRCd class.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8491 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index f62e2a74b..e582a5d6a 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -31,6 +31,7 @@ #include <fstream> #include "xline.h" +#include "bancache.h" #include "socketengine.h" #include "inspircd_se_config.h" #include "socket.h" @@ -327,6 +328,7 @@ InspIRCd::InspIRCd(int argc, char** argv) this->Config = new ServerConfig(this); this->SNO = new SnomaskManager(this); + this->BanCache = new BanCacheManager(this); this->Modules = new ModuleManager(this); this->stats = new serverstats(); this->Timers = new TimerManager(this); |