1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 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 * ---------------------------------------------------
14 #include "configreader.h"
16 #include "commands/cmd_time.h"
20 extern "C" command_t* init_command(InspIRCd* Instance)
22 return new cmd_time(Instance);
25 CmdResult cmd_time::Handle (const char** parameters, int pcnt, userrec *user)
28 time_t local = ServerInstance->Time();
30 timeinfo = localtime(&local);
33 snprintf(tms,26,"%s",asctime(timeinfo));
36 user->WriteServ("391 %s %s :%s",user->nick,ServerInstance->Config->ServerName,tms);