X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_spanningtree%2Ffmode.cpp;h=c1e452db627bd28d0a647609536eb75d396c8248;hb=4b8f3dd68f7c3a273c1a892c0de54ea01e48db3e;hp=598c9ab9ce0d3ea01e2a84b67acae2c8fd9b201e;hpb=cd712c40e1b352c05e7ae0f72e0a5e84cdf64323;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/fmode.cpp b/src/modules/m_spanningtree/fmode.cpp index 598c9ab9c..c1e452db6 100644 --- a/src/modules/m_spanningtree/fmode.cpp +++ b/src/modules/m_spanningtree/fmode.cpp @@ -1,36 +1,33 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2010 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2008 Robin Burchell * - * This program is free but copyrighted software; see - * the file COPYING for details. + * 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 . */ + #include "inspircd.h" -#include "xline.h" +#include "commands.h" #include "treesocket.h" #include "treeserver.h" #include "utils.h" -/* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */ - - /** FMODE command - server mode with timestamp checks */ -void TreeSocket::ForceMode(User* who, parameterlist ¶ms) +CmdResult CommandFMode::Handle(const std::vector& params, User *who) { - /* Chances are this is a 1.0 FMODE without TS */ - if (params.size() < 3) - { - /* No modes were in the command, probably a channel with no modes set on it */ - return; - } - std::string sourceserv = who->server; std::vector modelist; @@ -70,27 +67,27 @@ void TreeSocket::ForceMode(User* who, parameterlist ¶ms) } else /* Oops, channel doesnt exist! */ - return; + return CMD_FAILURE; } if (!TS) { ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"*** BUG? *** TS of 0 sent to FMODE. Are some services authors smoking craq, or is it 1970 again?. Dropped."); ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FMODE with a TS of zero. Total craq. Mode was dropped.", sourceserv.c_str()); - return; + return CMD_INVALID; } /* TS is equal or less: Merge the mode changes into ours and pass on. */ if (TS <= ourTS) { - ServerInstance->Modes->Process(modelist, who, IS_SERVER(who)); - - /* HOT POTATO! PASS IT ON! */ - Utils->DoOneToAllButSender(sourceserv,"FMODE",params,sourceserv); + bool merge = (TS == ourTS) && IS_SERVER(who); + ServerInstance->Modes->Process(modelist, who, merge); + return CMD_SUCCESS; } /* If the TS is greater than ours, we drop the mode and dont pass it anywhere. */ + return CMD_FAILURE; }