2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2004-2007 Craig Edwards <craigedwards@brainbox.cc>
7 * Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
8 * Copyright (C) 2005 Craig McLure <craig@chatspike.net>
10 * This file is part of InspIRCd. InspIRCd is free software: you can
11 * redistribute it and/or modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation, version 2.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 CmdResult SplitCommand::Handle(const std::vector<std::string>& parms, User* u)
29 return HandleLocal(parms, IS_LOCAL(u));
31 return HandleRemote(parms, IS_REMOTE(u));
33 return HandleServer(parms, IS_SERVER(u));
34 ServerInstance->Logs->Log("COMMAND", LOG_DEFAULT, "Unknown user type in command (uuid=%s)!", u->uuid.c_str());
38 CmdResult SplitCommand::HandleLocal(const std::vector<std::string>&, LocalUser*)
43 CmdResult SplitCommand::HandleRemote(const std::vector<std::string>&, RemoteUser*)
48 CmdResult SplitCommand::HandleServer(const std::vector<std::string>&, FakeUser*)