1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2008 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
15 #include "commands/cmd_ping.h"
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
19 return new CommandPing(Instance);
22 CmdResult CommandPing::Handle (const std::vector<std::string>& parameters, User *user)
24 user->WriteServ("PONG %s :%s", ServerInstance->Config->ServerName, parameters[0].c_str());