]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_squit.cpp
ada5655d1f4d80bb7082ee43ca076b8a16f836d6
[user/henk/code/inspircd.git] / src / commands / cmd_squit.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 #ifndef __CMD_SQUIT_H__
17 #define __CMD_SQUIT_H__
18
19 // include the common header files
20
21 #include <string>
22 #include <vector>
23 #include "inspircd.h"
24 #include "users.h"
25 #include "channels.h"
26
27 /** Handle /SQUIT. These command handlers can be reloaded by the core,
28  * and handle basic RFC1459 commands. Commands within modules work
29  * the same way, however, they can be fully unloaded, where these
30  * may not.
31  */
32 class CommandSquit : public Command
33 {
34  public:
35         /** Constructor for squit.
36          */
37         CommandSquit (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"SQUIT","o",1) { syntax = "<servername> [<reason>]"; }
38         /** Handle command.
39          * @param parameters The parameters to the comamnd
40          * @param pcnt The number of parameters passed to teh command
41          * @param user The user issuing the command
42          * @return A value from CmdResult to indicate command success or failure.
43          */
44         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
45 };
46
47 #endif
48
49
50 /*
51  * This is handled by the server linking module, if necessary. Do not remove this stub.
52  */
53
54
55 CmdResult CommandSquit::Handle (const std::vector<std::string>&, User *user)
56 {
57         user->WriteServ( "NOTICE %s :Look into loading a linking module (like m_spanningtree) if you want this to do anything useful.", user->nick.c_str());
58         return CMD_FAILURE;
59 }
60
61 COMMAND_INIT(CommandSquit)