]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/rsquit.h
Send SVSNICKs during nick collision to prevent servers that do not fully implement...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / rsquit.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __RSQUIT_H__
15 #define __RSQUIT_H__
16
17 /** Handle /RCONNECT
18  */
19 class CommandRSQuit : public Command
20 {
21         Module* Creator;                /* Creator */
22         SpanningTreeUtilities* Utils;   /* Utility class */
23  public:
24         CommandRSQuit (InspIRCd* Instance, Module* Callback, SpanningTreeUtilities* Util);
25         CmdResult Handle (const std::vector<std::string>& parameters, User *user);
26         void NoticeUser(User* user, const std::string &msg);
27 };
28
29 #endif