summaryrefslogtreecommitdiff
path: root/include/inspircd_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/inspircd_io.h')
-rw-r--r--include/inspircd_io.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/inspircd_io.h b/include/inspircd_io.h
index 36b00e935..200c4a8c2 100644
--- a/include/inspircd_io.h
+++ b/include/inspircd_io.h
@@ -37,6 +37,7 @@ class ServerConfig
char PrefixQuit[MAXBUF];
char DieValue[MAXBUF];
char DNSServer[MAXBUF];
+ char DisabledCommands[MAXBUF];
char ModPath[1024];
char MyExecutable[1024];
FILE *log_file;
@@ -70,6 +71,7 @@ class ServerConfig
*DNSServer = '\0';
*ModPath = '\0';
*MyExecutable = '\0';
+ *DisabledCommands = '\0';
log_file = NULL;
nofork = false;
unlimitcore = false;
@@ -80,7 +82,7 @@ class ServerConfig
MaxConn = SOMAXCONN;
MaxWhoResults = 100;
debugging = 0;
- LogLevel = 0;
+ LogLevel = 30;
DieDelay = 5;
}
};