diff options
author | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-26 23:55:23 +0000 |
---|---|---|
committer | Naram Qashat cyberbotx@cyberbotx.com <Naram Qashat cyberbotx@cyberbotx.com@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-26 23:55:23 +0000 |
commit | e858f5cd0a406bbcdf49a974ef10836088c21b3a (patch) | |
tree | e4e7f8a936049aa2c6f8c58c448332f3a217944c /src/config.c | |
parent | 4ca6d143113760cd5ffa2f00182d939881a30a70 (diff) |
Started defcon block in new config, added defaultlevel directive to it.
Added ValidateDefCon function to validate certain DefCon related directives.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1491 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 660b69052..d888677ac 100644 --- a/src/config.c +++ b/src/config.c @@ -513,6 +513,18 @@ bool ValidateLimitSessions(ServerConfig *, const char *tag, const char *value, V return true; } +bool ValidateDefCon(ServerConfig *, const char *tag, const char *value, ValueItem &data) +{ + if (static_cast<std::string>(value) == "defaultlevel") { + int level = data.GetInteger(); + if (!level) return true; + if (level > 5) throw ConfigException("The value for <defcon:defaultlevel> must be between 1 through 5 if you wish to use DefCon or 0 if you wish to disable it!"); + } + else if (DefConLevel) { + } + return true; +} + void ServerConfig::ReportConfigError(const std::string &errormessage, bool bail) { alog("There were errors in your configuration file: %s", errormessage.c_str()); @@ -678,6 +690,7 @@ int ServerConfig::Read(bool bail) {"operserv", "sessionautokillexpiry", "0", new ValueContainerTime(&SessionAutoKillExpiry), DT_TIME, NoValidation}, {"operserv", "addakiller", "no", new ValueContainerBool(&AddAkiller), DT_BOOLEAN, NoValidation}, {"opserver", "opersonly", "no", new ValueContainerBool(&OSOpersOnly), DT_BOOLEAN, NoValidation}, + {"defcon", "defaultlevel", "0", new ValueContainerInt(&DefConLevel), DT_INTEGER, ValidateDefCon}, {NULL, NULL, NULL, NULL, DT_NOTHING, NoValidation} }; /* These tags can occur multiple times, and therefore they have special code to read them @@ -1258,7 +1271,6 @@ Directive directives[] = { {"DontQuoteAddresses", {{PARAM_SET, PARAM_RELOAD, &DontQuoteAddresses}}}, {"DumpCore", {{PARAM_SET, 0, &DumpCore}}}, - {"DefConLevel", {{PARAM_INT, PARAM_RELOAD, &DefConLevel}}}, {"DefCon1", {{PARAM_INT, PARAM_RELOAD, &DefCon1}}}, {"DefCon2", {{PARAM_INT, PARAM_RELOAD, &DefCon2}}}, {"DefCon3", {{PARAM_INT, PARAM_RELOAD, &DefCon3}}}, |