]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/hashcomp.cpp
Move all_opers into class InspIRCd
[user/henk/code/inspircd.git] / src / hashcomp.cpp
index 278ea0044e41cca8cbdd05be2d905f53cf47c93e..ac51cafe883deb0134c2c18b50949230785679ba 100644 (file)
@@ -60,6 +60,24 @@ extern const char lowermap[255];
 using namespace std;
 using namespace irc::sockets;
 
+/* convert a string to lowercase. Note following special circumstances
+ * taken from RFC 1459. Many "official" server branches still hold to this
+ * rule so i will too;
+ *
+ *  Because of IRC's scandanavian origin, the characters {}| are
+ *  considered to be the lower case equivalents of the characters []\,
+ *  respectively. This is a critical issue when determining the
+ *  equivalence of two nicknames.
+ */
+void nspace::strlower(char *n)
+{
+        if (n)
+        {
+                for (char* t = n; *t; t++)
+                        *t = lowermap[(unsigned char)*t];
+        }
+}
+
 size_t nspace::hash<insp_inaddr>::operator()(const insp_inaddr &a) const
 {
        size_t q;
@@ -69,10 +87,15 @@ size_t nspace::hash<insp_inaddr>::operator()(const insp_inaddr &a) const
 
 size_t nspace::hash<string>::operator()(const string &s) const
 {
-       char a[MAXBUF];
+       char a[s.length()];
+       size_t t = 0;
        static struct hash<const char *> strhash;
-       strlcpy(a,s.c_str(),MAXBUF);
-       strlower(a);
+
+       for (const char* x = s.c_str(); *x; x++)        /* Faster to do it this way than */
+               a[t++] = lowermap[(unsigned char)*x];   /* Seperate strlcpy and strlower */
+
+       a[t] = 0;
+
        return strhash(a);
 }