diff options
author | Adam <Adam@anope.org> | 2012-05-23 19:35:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-05-23 19:35:56 -0400 |
commit | 70fb5900a2cc8eb00d1d25b39bd137488e845338 (patch) | |
tree | 134683df2a07d7bbabb8d78c3284096f687eadc7 /src | |
parent | bf7d1a55afd4e082813e995fd967ad1dae8df26d (diff) |
Add support for inspircd2.0+s mlock, improved on Unreal's, and made server side mlock usage configurable
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index f192eb3cf..8e45097a7 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1253,6 +1253,7 @@ ConfigItems::ConfigItems(ServerConfig *conf) {"chanserv", "mlock", "+nrt", new ValueContainerString(&conf->MLock), DT_STRING | DT_ALLOW_EMPTY, NoValidation}, {"chanserv", "nomlock", "", new ValueContainerString(&conf->NoMLock), DT_STRING, NoValidation}, {"chanserv", "require", "", new ValueContainerString(&conf->CSRequire), DT_STRING, NoValidation}, + {"chanserv", "use_server_side_mlock", "yes", new ValueContainerBool(&conf->UseServerSideMLock), DT_BOOLEAN, NoValidation}, {"memoserv", "name", "", new ValueContainerString(&conf->MemoServ), DT_STRING, NoValidation}, {"memoserv", "maxmemos", "0", new ValueContainerUInt(&conf->MSMaxMemos), DT_UINTEGER, NoValidation}, {"memoserv", "senddelay", "0", new ValueContainerTime(&conf->MSSendDelay), DT_TIME, NoValidation}, |