]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermotd.cpp
Someone is getting slapped for this; the new hidesplits/hidebans behavior doesn't...
[user/henk/code/inspircd.git] / src / modules / m_opermotd.cpp
index f0457904a143c6f9ec34077b9bcc01063e114f28..a80aa513c0822ac3609f532b0b303ba0245ba7f7 100644 (file)
@@ -1,24 +1,33 @@
-// opermotd module by typobox43
-
-using namespace std;
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
 
 #include <stdio.h>
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
 /* $ModDesc: Shows a message to opers after oper-up, adds /opermotd */
 
 static FileReader* opermotd;
 
-void ShowOperMOTD(userrec* user)
+CmdResult ShowOperMOTD(userrec* user)
 {
        if(!opermotd->FileSize())
        {
                user->WriteServ(std::string("425 ") + user->nick + std::string(" :OPERMOTD file is missing"));
-               return;
+               return CMD_FAILURE;
        }
        user->WriteServ(std::string("375 ") + user->nick + std::string(" :- IRC Operators Message of the Day"));
        for(int i=0; i != opermotd->FileSize(); i++)
@@ -26,8 +35,12 @@ void ShowOperMOTD(userrec* user)
                user->WriteServ(std::string("372 ") + user->nick + std::string(" :- ") + opermotd->GetLine(i));
        }
        user->WriteServ(std::string("376 ") + user->nick + std::string(" :- End of OPERMOTD"));
+
+       return CMD_SUCCESS;
 }
 
+/** Handle /OPERMOTD
+ */
 class cmd_opermotd : public command_t
 {
  public:
@@ -37,9 +50,9 @@ class cmd_opermotd : public command_t
                syntax = "[<servername>]";
        }
 
-       void Handle (const char** parameters, int pcnt, userrec* user)
+       CmdResult Handle (const char** parameters, int pcnt, userrec* user)
        {
-               ShowOperMOTD(user);
+               return ShowOperMOTD(user);
        }
 };
 
@@ -79,7 +92,7 @@ class ModuleOpermotd : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,VF_VENDOR);
+               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
        }
 
        void Implements(char* List)
@@ -92,7 +105,7 @@ class ModuleOpermotd : public Module
                ShowOperMOTD(user);
        }
 
-       virtual void OnRehash(const std::string &parameter)
+       virtual void OnRehash(userrec* user, const std::string &parameter)
        {
                LoadOperMOTD();
        }