X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_lockserv.cpp;h=f3ac9334765e4a96e6359a6740a4e48772969902;hb=7c197db72eab03321e4f3e847054e13126520504;hp=844c7557690799d906ae48ac5b789b843b4c3e83;hpb=ead232e19a2b9d6bee36bb97a0dc9f3975f1e3a0;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_lockserv.cpp b/src/modules/m_lockserv.cpp index 844c75576..f3ac93347 100644 --- a/src/modules/m_lockserv.cpp +++ b/src/modules/m_lockserv.cpp @@ -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 :Closed for new connections + * 988 :Closed for new connections * 989 :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 ¶meter) + virtual void OnRehash(userrec* user, const std::string ¶meter) { 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); } };