]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/configreader.h
Support CIDR, CIDR zline, /oper and CIDR <connect> tags. NOTE: With CIDR oper, ident...
[user/henk/code/inspircd.git] / include / configreader.h
index 598fbef816802f1de7e287128820739e15d85b49..e2ff1c2c914bbc155ffcd65ebdc8546a2589c37d 100644 (file)
@@ -344,6 +344,14 @@ class ServerConfig : public Extensible
         */
        std::map<std::string,int> maxbans;
 
+       /** If set to true, no user DNS lookups are to be performed
+        */
+       bool NoUserDns;
+
+       /** If set to true, provide syntax hints for unknown commands
+        */
+       bool SyntaxHints;
+
        ServerConfig();
 
        /** Clears the include stack in preperation for
@@ -390,4 +398,6 @@ class ServerConfig : public Extensible
        bool DelIOHook(int port);
 };
 
+bool InitializeDisabledCommands(const char* data, InspIRCd* ServerInstance);
+
 #endif