X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_lockserv.cpp;h=60a76c15d0e8940dc066d18559a46d720ea212b0;hb=16ba90f0c61c810a900a1d630416d1d24914e134;hp=80b90f1290d6267cddd26460742cc7c632c5679f;hpb=94afde43b086f092bf8128d76d418cb63840e8eb;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_lockserv.cpp b/src/modules/m_lockserv.cpp index 80b90f129..60a76c15d 100644 --- a/src/modules/m_lockserv.cpp +++ b/src/modules/m_lockserv.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * InspIRCd: (C) 2002-2009 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see @@ -28,17 +28,17 @@ private: public: CommandLockserv (InspIRCd* Instance, bool &lock) - : Command(Instance, "LOCKSERV", 'o', 0), locked(lock) + : Command(Instance, "LOCKSERV", "o", 0), locked(lock) { this->source = "m_lockserv.so"; syntax.clear(); } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const std::vector ¶meters, User *user) { locked = true; - user->WriteServ("988 %s %s :Closed for new connections", user->nick, user->server); - ServerInstance->SNO->WriteToSnoMask('O', "Oper %s used LOCKSERV to temporarily close for new connections", user->nick); + user->WriteNumeric(988, "%s %s :Closed for new connections", user->nick.c_str(), user->server); + ServerInstance->SNO->WriteToSnoMask('A', "Oper %s used LOCKSERV to temporarily close for new connections", user->nick.c_str()); /* Dont send to the network */ return CMD_LOCALONLY; } @@ -51,17 +51,17 @@ private: public: CommandUnlockserv (InspIRCd* Instance, bool &lock) - : Command(Instance, "UNLOCKSERV", 'o', 0), locked(lock) + : Command(Instance, "UNLOCKSERV", "o", 0), locked(lock) { this->source = "m_lockserv.so"; syntax.clear(); } - CmdResult Handle (const char** parameters, int pcnt, User *user) + CmdResult Handle (const std::vector ¶meters, User *user) { locked = false; - user->WriteServ("989 %s %s :Open for new connections", user->nick, user->server); - ServerInstance->SNO->WriteToSnoMask('O', "Oper %s used UNLOCKSERV to allow for new connections", user->nick); + user->WriteNumeric(989, "%s %s :Open for new connections", user->nick.c_str(), user->server); + ServerInstance->SNO->WriteToSnoMask('A', "Oper %s used UNLOCKSERV to allow for new connections", user->nick.c_str()); /* Dont send to the network */ return CMD_LOCALONLY; } @@ -106,7 +106,7 @@ public: { if (locked) { - User::QuitUser(ServerInstance, user, "Server is temporarily closed. Please try again later."); + ServerInstance->Users->QuitUser(user, "Server is temporarily closed. Please try again later."); return 1; } return 0; @@ -119,7 +119,7 @@ public: virtual Version GetVersion() { - return Version(1, 0, 0, 1, VF_VENDOR, API_VERSION); + return Version("$Id$", VF_VENDOR, API_VERSION); } };