]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermd5.cpp
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / src / modules / m_opermd5.cpp
index 1adf0906f34994468a8fc2df3b7aaa3550a8e746..9ac896e81e709a178554379a9094d746f68f29a5 100644 (file)
@@ -26,7 +26,8 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
+#include "inspircd.h"
 
 /* The four core functions - F1 is optimized somewhat */
 #define F1(x, y, z) (z ^ (x & (y ^ z)))
@@ -271,7 +272,7 @@ void GenHash(const char* src, char* dest)
 class cmd_mkpasswd : public command_t
 {
  public:
      cmd_mkpasswd () : command_t("MKPASSWD", 'o', 1)
cmd_mkpasswd (InspIRCd* Instance) : command_t(Instance,"MKPASSWD", 'o', 1)
        {
                this->source = "m_opermd5.so";
                syntax = "<any-text>";
@@ -281,22 +282,22 @@ class cmd_mkpasswd : public command_t
        {
                char buffer[MAXBUF];
                GenHash(parameters[0],buffer);
-               WriteServ(user->fd,"NOTICE %s :MD5 hashed password for %s is %s",user->nick,parameters[0],buffer);
+               user->WriteServ("NOTICE %s :MD5 hashed password for %s is %s",user->nick,parameters[0],buffer);
        }
 };
 
 class ModuleOperMD5 : public Module
 {
-       Server* Srv;
+       
        cmd_mkpasswd* mycommand;
  public:
 
-       ModuleOperMD5(Server* Me)
+       ModuleOperMD5(InspIRCd* Me)
                : Module::Module(Me)
        {
-               Srv = Me;
-               mycommand = new cmd_mkpasswd();
-               Srv->AddCommand(mycommand);
+               
+               mycommand = new cmd_mkpasswd(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleOperMD5()
@@ -341,7 +342,7 @@ class ModuleOperMD5Factory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleOperMD5(Me);
        }