]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_squit.cpp
m_spanningtree Fix rare desync when a KILL crosses a message that has the killed...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_squit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 /* $ModDesc: Provides a spanning tree server link protocol */
21
22 #include "inspircd.h"
23 #include "socket.h"
24 #include "xline.h"
25
26 #include "main.h"
27 #include "utils.h"
28 #include "treeserver.h"
29 #include "treesocket.h"
30
31 /* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
32
33 ModResult ModuleSpanningTree::HandleSquit(const std::vector<std::string>& parameters, User* user)
34 {
35         TreeServer* s = Utils->FindServerMask(parameters[0]);
36         if (s)
37         {
38                 if (s == Utils->TreeRoot)
39                 {
40                         user->WriteServ("NOTICE %s :*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (%s matches local server name)",user->nick.c_str(),parameters[0].c_str());
41                         return MOD_RES_DENY;
42                 }
43
44                 TreeSocket* sock = s->GetSocket();
45
46                 if (sock)
47                 {
48                         ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0].c_str(),user->nick.c_str());
49                         sock->Squit(s,"Server quit by " + user->GetFullRealHost());
50                         ServerInstance->SE->DelFd(sock);
51                         sock->Close();
52                 }
53                 else
54                 {
55                         user->WriteServ("NOTICE %s :*** SQUIT may not be used to remove remote servers. Please use RSQUIT instead.",user->nick.c_str());
56                 }
57         }
58         else
59         {
60                  user->WriteServ("NOTICE %s :*** SQUIT: The server \002%s\002 does not exist on the network.",user->nick.c_str(),parameters[0].c_str());
61         }
62         return MOD_RES_DENY;
63 }
64