]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_lockserv.cpp
Someone is getting slapped for this; the new hidesplits/hidebans behavior doesn't...
[user/henk/code/inspircd.git] / src / modules / m_lockserv.cpp
index 844c7557690799d906ae48ac5b789b843b4c3e83..f3ac9334765e4a96e6359a6740a4e48772969902 100644 (file)
@@ -1,3 +1,16 @@
+/*       +------------------------------------+
+ *       | 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 "users.h"
 #include "channels.h"
 #include "modules.h"
@@ -7,7 +20,7 @@
 /* $ModDesc: Allows locking of the server to stop all incoming connections till unlocked again */
 
 /** Adds numerics
- * 988 <nick> <servername> :Closed for new connections\r
+ * 988 <nick> <servername> :Closed for new connections
  * 989 <nick> <servername> :Open for new connections
 */
 
@@ -38,7 +51,7 @@ public:
 class cmd_unlockserv : public command_t
 {
 private:
-        bool& locked;
+       bool& locked;
 
 public:
        cmd_unlockserv (InspIRCd* Instance, bool &lock)
@@ -81,22 +94,22 @@ public:
                ServerInstance->AddCommand(unlockcommand);
        }
 
-    virtual ~ModuleLockserv()
-    {
-    }
+       virtual ~ModuleLockserv()
+       {
+       }
 
        void Implements(char* List)
        {
                List[I_OnUserRegister] = List[I_OnRehash] = List[I_OnCheckReady] = 1;
        }
 
-       virtual void OnRehash(const std::string &parameter)
+       virtual void OnRehash(userrec* user, const std::string &parameter)
        {
                ResetLocked();
        }
 
        virtual int OnUserRegister(userrec* user)
-    {
+       {
                if (locked)
                {
                        userrec::QuitUser(ServerInstance, user, "Server is temporarily closed. Please try again later.");
@@ -112,7 +125,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version(1,0,0,1,0, API_VERSION);
+               return Version(1, 0, 0, 1, VF_VENDOR, API_VERSION);
        }
 };