]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_connect.cpp
Replace OnAccessCheck with OnPreMode to remove a number of redundant checks
[user/henk/code/inspircd.git] / src / commands / cmd_connect.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_CONNECT_H__
17 #define __CMD_CONNECT_H__
18
19 #include "users.h"
20 #include "channels.h"
21 #include "ctables.h"
22 #include "modules.h"
23
24 /** Handle /CONNECT. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandConnect : public Command
30 {
31  public:
32         /** Constructor for connect.
33          */
34         CommandConnect (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"CONNECT","o",1,false,0) { syntax = "<servername> [<remote-server>]"; }
35         /** Handle command.
36          * @param parameters The parameters to the comamnd
37          * @param pcnt The number of parameters passed to teh command
38          * @param user The user issuing the command
39          * @return A value from CmdResult to indicate command success or failure.
40          */
41         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
42 };
43
44 #endif
45
46
47 /*
48  * This is handled by the server linking module, if necessary. Do not remove this stub.
49  */
50
51 /** Handle /CONNECT
52  */
53 CmdResult CommandConnect::Handle (const std::vector<std::string>&, User *user)
54 {
55         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());
56         return CMD_SUCCESS;
57 }
58
59 COMMAND_INIT(CommandConnect)