summaryrefslogtreecommitdiffstats
path: root/src/CRSMConfig.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CRSMConfig.hpp')
-rw-r--r--src/CRSMConfig.hpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/CRSMConfig.hpp b/src/CRSMConfig.hpp
index 22458e9..a566092 100644
--- a/src/CRSMConfig.hpp
+++ b/src/CRSMConfig.hpp
@@ -71,10 +71,16 @@ public:
String IngameChannel = "#crsm-ingame";
String QuitMessage = "Dedicated Clonk server powered by CRSM";
Integer ReconnectDelay = 10;
- String ScenListMessage = "A list of available scenarios is available ingame or in a lobby.";
+ String ScenListMessage = "A list of available scenarios is available over DCC, ingame or in a lobby.";
Map(String, String) Moderators;
} IRC;
+ struct {
+ Boolean Use = true;
+ Integer Port = 9373;
+ String Address = "0.0.0.0";
+ } DCC;
+
struct {
struct {
@@ -161,6 +167,12 @@ public:
+ ConfigVal(DCC.Use),
+ ConfigVal(DCC.Address),
+ ConfigVal(DCC.Port),
+
+
+
ConfigVal(Auto.ProcessManager.ReattachId),