summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 85c2f62e6..59e840b7b 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -402,6 +402,14 @@ 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();