]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / commands.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
6  *   Copyright (C) 2009 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26
27 CmdResult SplitCommand::Handle(User* user, const Params& parameters)
28 {
29         switch (user->usertype)
30         {
31                 case USERTYPE_LOCAL:
32                         return HandleLocal(static_cast<LocalUser*>(user), parameters);
33
34                 case USERTYPE_REMOTE:
35                         return HandleRemote(static_cast<RemoteUser*>(user), parameters);
36
37                 case USERTYPE_SERVER:
38                         return HandleServer(static_cast<FakeUser*>(user), parameters);
39         }
40
41         ServerInstance->Logs->Log("COMMAND", LOG_DEFAULT, "Unknown user type %d in command (uuid=%s)!",
42                 user->usertype, user->uuid.c_str());
43         return CMD_INVALID;
44 }
45
46 CmdResult SplitCommand::HandleLocal(LocalUser* user, const Params& parameters)
47 {
48         return CMD_INVALID;
49 }
50
51 CmdResult SplitCommand::HandleRemote(RemoteUser* user, const Params& parameters)
52 {
53         return CMD_INVALID;
54 }
55
56 CmdResult SplitCommand::HandleServer(FakeUser* user, const Params& parameters)
57 {
58         return CMD_INVALID;
59 }