]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Report invalid command name when invalid command is given in negotiation phase
[user/henk/code/inspircd.git] / include / inspircd.h
index 965cf44fcd44dccadaee2a380bf8399c16d2e931..8c897305f074cb43c9533a7fe4374468d6dc1a63 100644 (file)
@@ -25,9 +25,9 @@
 #include "channels.h"
 #include "socket.h"
 #include "mode.h"
-
 #include "socketengine.h"
 #include "command_parse.h"
+#include "snomasks.h"
 
 /** Returned by some functions to indicate failure,
  * and the exit code of the program if it terminates.
@@ -245,9 +245,8 @@ class InspIRCd : public classbase
        void Start();
 
        /** Set up the signal handlers
-        * @param SEGVHandler create a handler for segfaults (deprecated)
         */
-       void SetSignals(bool SEGVHandler);
+       void SetSignals();
 
        /** Daemonize the ircd and close standard input/output streams
         * @return True if the program daemonized succesfully
@@ -373,6 +372,11 @@ class InspIRCd : public classbase
         */
        ServerConfig* Config;
 
+       /** Snomask manager - handles routing of snomask messages
+        * to opers.
+        */
+       SnomaskManager* SNO;
+
        /** Client list, a hash_map containing all clients, local and remote
         */
        user_hash clientlist;