]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Typo in declaration
[user/henk/code/inspircd.git] / include / inspircd.h
index 4e7710714d7c5a519ea91e11cca561c9c873194d..10ab85d4e52806ff3e1254e352955771c2740b47 100644 (file)
@@ -43,6 +43,7 @@
 #include "channels.h"
 #include "socket.h"
 #include "mode.h"
+#include "socketengine.h"
 #include "command_parse.h"
 
 // some misc defines
 #define MAXSOCKS 64
 #define MAXCOMMAND 32
 
-// flags for use with WriteMode
+/*
+flags for use with WriteMode
 
 #define WM_AND 1
 #define WM_OR 2
 
-// flags for use with OnUserPreMessage and OnUserPreNotice
+flags for use with OnUserPreMessage and OnUserPreNotice
 
 #define TYPE_USER 1
 #define TYPE_CHANNEL 2
@@ -67,8 +69,7 @@
 #define IS_LOCAL(x) (x->fd > -1)
 #define IS_REMOTE(x) (x->fd < 0)
 #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER)
-
-typedef void (handlerfunc) (char**, int, userrec*);
+*/
 
 class serverstats
 {
@@ -107,7 +108,10 @@ class InspIRCd
        time_t startup_time;
        ModeParser* ModeGrok;
        CommandParser* Parser;
+       SocketEngine* SE;
+       serverstats* stats;
 
+       void MakeLowerMap();
        std::string GetRevision();
        std::string GetVersionString();
        char* ModuleError();