From 9d6dd4af11a3b6e3660b124f413176f2eb451e88 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 11 Sep 2020 21:24:43 +0100 Subject: Remove the non-tagged version of IRCDMessage::Run. --- modules/protocol/plexus.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/protocol/plexus.cpp') diff --git a/modules/protocol/plexus.cpp b/modules/protocol/plexus.cpp index b40d45e6f..f7db95e6b 100644 --- a/modules/protocol/plexus.cpp +++ b/modules/protocol/plexus.cpp @@ -191,7 +191,7 @@ struct IRCDMessageEncap : IRCDMessage { IRCDMessageEncap(Module *creator) : IRCDMessage(creator, "ENCAP", 4) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); SetFlag(IRCDMESSAGE_SOFT_LIMIT); } - void Run(MessageSource &source, const std::vector ¶ms) anope_override + void Run(MessageSource &source, const std::vector ¶ms, const Anope::map &tags) anope_override { /* * Received: :dev.anope.de ENCAP * SU DukePyrolator DukePyrolator @@ -247,7 +247,7 @@ struct IRCDMessagePass : IRCDMessage { IRCDMessagePass(Module *creator) : IRCDMessage(creator, "PASS", 4) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); } - void Run(MessageSource &source, const std::vector ¶ms) anope_override + void Run(MessageSource &source, const std::vector ¶ms, const Anope::map &tags) anope_override { UplinkSID = params[3]; } @@ -259,7 +259,7 @@ struct IRCDMessageServer : IRCDMessage /* 0 1 2 */ /* SERVER hades.arpa 1 :ircd-hybrid test server */ - void Run(MessageSource &source, const std::vector ¶ms) anope_override + void Run(MessageSource &source, const std::vector ¶ms, const Anope::map &tags) anope_override { /* Servers other than our immediate uplink are introduced via SID */ if (params[1] != "1") @@ -287,7 +287,7 @@ struct IRCDMessageUID : IRCDMessage params[10] = info */ // :42X UID Adam 1 1348535644 +aow Adam 192.168.0.5 192.168.0.5 42XAAAAAB 0 192.168.0.5 :Adam - void Run(MessageSource &source, const std::vector ¶ms) anope_override + void Run(MessageSource &source, const std::vector ¶ms, const Anope::map &tags) anope_override { /* An IP of 0 means the user is spoofed */ Anope::string ip = params[6]; -- cgit