]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_pong.cpp
Replace OnAccessCheck with OnPreMode to remove a number of redundant checks
[user/henk/code/inspircd.git] / src / commands / cmd_pong.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_PONG_H__
17 #define __CMD_PONG_H__
18
19 // include the common header files
20
21 #include "inspircd.h"
22 #include "users.h"
23 #include "channels.h"
24
25 /** Handle /PONG. These command handlers can be reloaded by the core,
26  * and handle basic RFC1459 commands. Commands within modules work
27  * the same way, however, they can be fully unloaded, where these
28  * may not.
29  */
30 class CommandPong : public Command
31 {
32  public:
33         /** Constructor for pong.
34          */
35         CommandPong (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"PONG", 0, 1, false, 0) { syntax = "<ping-text>"; }
36         /** Handle command.
37          * @param parameters The parameters to the comamnd
38          * @param pcnt The number of parameters passed to teh command
39          * @param user The user issuing the command
40          * @return A value from CmdResult to indicate command success or failure.
41          */
42         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
43 };
44
45 #endif
46
47
48 CmdResult CommandPong::Handle (const std::vector<std::string>&, User *user)
49 {
50         // set the user as alive so they survive to next ping
51         user->lastping = 1;
52         return CMD_SUCCESS;
53 }
54
55 COMMAND_INIT(CommandPong)