]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_cloaking.cpp
To be more specific, specify rpath() macro here
[user/henk/code/inspircd.git] / src / modules / m_cloaking.cpp
index 033ac8c53eb6aa58bbe07b9ca136b79c8335ff2a..ae28075c00bb2e0867719aae2b8c89c007380e8a 100644 (file)
@@ -176,6 +176,11 @@ class CloakUser : public ModeHandler
 
        std::string Cloak6(const char* ip)
        {
+               /* Theyre using 4in6 (YUCK). Translate as ipv4 cloak */
+               if (!strncmp(ip, "0::ffff:", 8))
+                       return Cloak4(ip + 8);
+
+               /* If we get here, yes it really is an ipv6 ip */
                unsigned int iv[] = { key1, key2, key3, key4 };
                std::vector<std::string> hashies;
                std::string item = "";