diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 1 | ||||
-rw-r--r-- | include/inspircd_io.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 68289d5ee..346287462 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -131,5 +131,6 @@ class InspIRCd /* userrec optimization stuff */ void AddServerName(std::string servername); const char* FindServerNamePtr(std::string servername); +bool FindServerName(std::string servername); #endif diff --git a/include/inspircd_io.h b/include/inspircd_io.h index da592d6c4..a3190cd6a 100644 --- a/include/inspircd_io.h +++ b/include/inspircd_io.h @@ -220,6 +220,10 @@ class ServerConfig : public classbase */ int DieDelay; + /** True if we're going to hide netsplits as *.net *.split for non-opers + */ + bool HideSplits; + /** A list of IP addresses the server is listening * on. */ |