1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2009 InspIRCd Development Team
6 * See: http://wiki.inspircd.org/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
15 #include "commands/cmd_version.h"
19 extern "C" DllExport Command* init_command(InspIRCd* Instance)
21 return new CommandVersion(Instance);
24 CmdResult CommandVersion::Handle (const std::vector<std::string>&, User *user)
26 user->WriteNumeric(RPL_VERSION, "%s :%s",user->nick.c_str(),ServerInstance->GetVersionString().c_str());
27 ServerInstance->Config->Send005(user);