]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rconnect.cpp
Replace copyright headers with headers granting specific authors copyright
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rconnect.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "socket.h"
23 #include "xline.h"
24
25 #include "resolvers.h"
26 #include "main.h"
27 #include "utils.h"
28 #include "treeserver.h"
29 #include "link.h"
30 #include "treesocket.h"
31 #include "commands.h"
32
33 CommandRConnect::CommandRConnect (Module* Creator, SpanningTreeUtilities* Util)
34         : Command(Creator, "RCONNECT", 2), Utils(Util)
35 {
36         flags_needed = 'o';
37         syntax = "<remote-server-mask> <target-server-mask>";
38 }
39
40 CmdResult CommandRConnect::Handle (const std::vector<std::string>& parameters, User *user)
41 {
42         if (IS_LOCAL(user))
43         {
44                 if (!Utils->FindServerMask(parameters[0]))
45                 {
46                         user->WriteServ("NOTICE %s :*** RCONNECT: Server \002%s\002 isn't connected to the network!", user->nick.c_str(), parameters[0].c_str());
47                         return CMD_FAILURE;
48                 }
49                 user->WriteServ("NOTICE %s :*** RCONNECT: Sending remote connect to \002%s\002 to connect server \002%s\002.",user->nick.c_str(),parameters[0].c_str(),parameters[1].c_str());
50         }
51
52         /* Is this aimed at our server? */
53         if (InspIRCd::Match(ServerInstance->Config->ServerName,parameters[0]))
54         {
55                 /* Yes, initiate the given connect */
56                 ServerInstance->SNO->WriteToSnoMask('l',"Remote CONNECT from %s matching \002%s\002, connecting server \002%s\002",user->nick.c_str(),parameters[0].c_str(),parameters[1].c_str());
57                 std::vector<std::string> para;
58                 para.push_back(parameters[1]);
59                 ((ModuleSpanningTree*)(Module*)creator)->HandleConnect(para, user);
60         }
61         return CMD_SUCCESS;
62 }
63
64 RouteDescriptor CommandRConnect::GetRouting(User* user, const std::vector<std::string>& parameters)
65 {
66         return ROUTE_UNICAST(parameters[0]);
67 }