]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermd5.cpp
Change includes, use --libs_r rather than mysql_config --libs, we want re-enterant...
[user/henk/code/inspircd.git] / src / modules / m_opermd5.cpp
index c5ac5a0eee3ce5e453a0b83cdf0653977053ebaf..4116ccb37810693bf0ecbe167aae89c1116078cb 100644 (file)
@@ -20,7 +20,7 @@ using namespace std;
 
 #include <stdio.h>
 #include "inspircd_config.h"
-#ifdef STDINT_H
+#ifdef HAS_STDINT
 #include <stdint.h>
 #endif
 #include "users.h"
@@ -38,10 +38,16 @@ using namespace std;
 #define MD5STEP(f,w,x,y,z,in,s) \
          (w += f(x,y,z) + in, w = (w<<s | w>>(32-s)) + x)
 
+#ifndef HAS_STDINT
+typedef unsigned int uint32_t;
+#endif
+
 typedef uint32_t word32; /* NOT unsigned long. We don't support 16 bit platforms, anyway. */
 typedef unsigned char byte;
 
-struct MD5Context {
+class MD5Context : public classbase
+{
+ public:
        word32 buf[4];
        word32 bytes[2];
        word32 in[16];
@@ -270,7 +276,7 @@ class cmd_mkpasswd : public command_t
                this->source = "m_opermd5.so";
        }
 
-       void Handle (char **parameters, int pcnt, userrec *user)
+       void Handle (const char** parameters, int pcnt, userrec *user)
        {
                char buffer[MAXBUF];
                GenHash(parameters[0],buffer);