diff options
-rw-r--r-- | include/inspircd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 566550376..8e5a5b2a8 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -66,7 +66,6 @@ typedef std::vector< KeyVal > KeyValList; */ typedef std::multimap< std::string, KeyValList > ConfigDataHash; - #include "inspircd_config.h" #include "numerics.h" #include "uid.h" @@ -277,6 +276,9 @@ DEFINE_HANDLER1(RehashHandler, void, const std::string&); class XLineManager; class BanCacheManager; +/** The background thread for config reading, so that reading from executable includes + * does not block. + */ class CoreExport ConfigReaderThread : public Thread { InspIRCd* ServerInstance; |