]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_ping.h
Add cmd_reloadmodule.{h,cpp} contributed by Eric at neowin.net, thanks :)
[user/henk/code/inspircd.git] / include / commands / cmd_ping.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2007 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __CMD_PING_H__
18 #define __CMD_PING_H__
19
20 // include the common header files
21
22 #include "users.h"
23 #include "channels.h"
24
25 /** Handle /PING
26  */
27 class cmd_ping : public command_t
28 {
29  public:
30         cmd_ping (InspIRCd* Instance) : command_t(Instance,"PING",0,1) { syntax = "<servername> [:<servername>]"; }
31         CmdResult Handle(const char** parameters, int pcnt, userrec *user);
32 };
33
34 #endif