summaryrefslogtreecommitdiff
path: root/src/config.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-10-03 17:35:35 +0200
committerattilamolnar <attilamolnar@hush.com>2012-10-07 00:59:49 +0200
commitec8a1bcc829e6c8faaf665077317266d2e477ccf (patch)
treee92ff86e131f814b6e6e4f28da8f72f231db71ca /src/config.cpp
parent2d9541c4c8f5c725e95c55a2ccb8181c8d5f8be3 (diff)
Add a config option for server side topic locks
Diffstat (limited to 'src/config.cpp')
-rw-r--r--src/config.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp
index 375a097ce..e0cd21b68 100644
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -1255,6 +1255,7 @@ ConfigItems::ConfigItems(ServerConfig *conf)
{"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},
+ {"chanserv", "use_server_side_topiclock", "yes", new ValueContainerBool(&conf->UseServerSideTopicLock), 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},