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