]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_seenicks.cpp
Fix the 'w' extban not being added to the EXTBAN 005 numeric.
[user/henk/code/inspircd.git] / src / modules / m_seenicks.cpp
index 2e775581072624bb03673f7411a022621d9ea4ee..ca770e35262a23d5e232036baaf8d2a99753c614 100644 (file)
@@ -1 +1,45 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "channels.h"\r#include "modules.h"\r#include "hashcomp.h"\r#include "configreader.h"\r\r/* $ModDesc: Provides support for seeing local and remote nickchanges via snomasks */\r\rclass ModuleSeeNicks : public Module\r{\r public:\r       ModuleSeeNicks(InspIRCd* Me)\r           : Module(Me)\r   {\r              ServerInstance->SNO->EnableSnomask('n',"NICK");\r                ServerInstance->SNO->EnableSnomask('N',"REMOTENICK");\r  }\r\r     virtual ~ModuleSeeNicks()\r      {\r              ServerInstance->SNO->DisableSnomask('n');\r              ServerInstance->SNO->DisableSnomask('N');\r      }\r\r     virtual Version GetVersion()\r   {\r              return Version(1,1,0,1, VF_VENDOR, API_VERSION);\r       }\r\r     void Implements(char* List)\r    {\r              List[I_OnUserPostNick] = 1;\r    }\r\r     virtual void OnUserPostNick(userrec* user, const std::string &oldnick)\r {\r              ServerInstance->SNO->WriteToSnoMask(IS_LOCAL(user) ? 'n' : 'N',"User %s changed their nickname to %s", oldnick.c_str(), user->nick);\r   }\r};\r\rMODULE_INIT(ModuleSeeNicks)\r
\ No newline at end of file
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
+ *   Copyright (C) 2007-2008, 2010 Craig Edwards <brain@inspircd.org>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "inspircd.h"
+
+class ModuleSeeNicks : public Module
+{
+ public:
+       void init() CXX11_OVERRIDE
+       {
+               ServerInstance->SNO->EnableSnomask('n',"NICK");
+       }
+
+       Version GetVersion() CXX11_OVERRIDE
+       {
+               return Version("Sends a notice to snomasks n (local) and N (remote) when a user changes their nickname.", VF_VENDOR);
+       }
+
+       void OnUserPostNick(User* user, const std::string &oldnick) CXX11_OVERRIDE
+       {
+               ServerInstance->SNO->WriteToSnoMask(IS_LOCAL(user) ? 'n' : 'N',"User %s changed their nickname to %s", oldnick.c_str(), user->nick.c_str());
+       }
+};
+
+MODULE_INIT(ModuleSeeNicks)