]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_time.cpp
Fix for bug found by danieldg, where remote nicks were truncated to NICKMAX, but...
[user/henk/code/inspircd.git] / src / commands / cmd_time.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 #include "commands/cmd_time.h"
16
17
18
19 extern "C" DllExport Command* init_command(InspIRCd* Instance)
20 {
21         return new CommandTime(Instance);
22 }
23
24 CmdResult CommandTime::Handle (const std::vector<std::string>&, User *user)
25 {
26         struct tm* timeinfo;
27         time_t local = ServerInstance->Time();
28
29         timeinfo = localtime(&local);
30
31         char tms[26];
32         snprintf(tms,26,"%s",asctime(timeinfo));
33         tms[24] = 0;
34
35         user->WriteNumeric(RPL_TIME, "%s %s :%s",user->nick.c_str(),ServerInstance->Config->ServerName,tms);
36
37         return CMD_SUCCESS;
38 }