]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Fix crash when services (or a misbehaving remote server) introduces a server with...
[user/henk/code/inspircd.git] / include / inspircd.h
index 59e840b7b177c8f2d0cac5733ae53c2ff5ff1007..fcd6849d5a5d3f184b3951b15bb2c3462591864c 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
 #ifndef __INSPIRCD_H__
 #define __INSPIRCD_H__
 
+#define _FILE_OFFSET_BITS 64
+#ifndef _LARGEFILE_SOURCE
+#define _LARGEFILE_SOURCE
+#endif
+
 #ifndef WIN32
 #define DllExport
 #define CoreExport
@@ -42,6 +47,7 @@
 #include <sstream>
 #include <string>
 #include <vector>
+#include <list>
 #include <deque>
 #include <map>
 #include <bitset>
@@ -402,14 +408,6 @@ class CoreExport InspIRCd : public classbase
         */
        User* FakeClient;
 
-       /** Seperate from the other casemap tables so that code *can* still exclusively rely on RFC casemapping
-        * if it must.
-        *
-        * This is provided as a pointer so that modules can change it to their custom mapping tables,
-        * e.g. for national character support.
-        */
-       unsigned const char *national_case_sensitive_map;
-
        /** Returns the next available UID for this server.
         */
        std::string GetUID();