]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_motd.cpp
...because every now and again, i have to do a massive commit.
[user/henk/code/inspircd.git] / src / commands / cmd_motd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 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_MOTD_H__
17 #define __CMD_MOTD_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 /MOTD. 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 CommandMotd : public Command
33 {
34  public:
35         /** Constructor for motd.
36          */
37         CommandMotd ( Module* parent) : Command(parent,"MOTD",0,1) { syntax = "[<servername>]"; }
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 /** Handle /MOTD
51  */
52 CmdResult CommandMotd::Handle (const std::vector<std::string>&, User *user)
53 {
54         user->ShowMOTD();
55         return CMD_SUCCESS;
56 }
57
58 COMMAND_INIT(CommandMotd)