]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
add a couple of parenthesis to the password comparison, because i couldnt easily...
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index 1b48c237f9c36bae06a090f613caa59ffddeb6c8..c65a05c5998af8cc064caaa1d3acc22deb2ddf32 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
 
 /* $ModDesc: Display timestamps from all servers connected to the network */
 
-class cmd_alltime : public Command
+class CommandAlltime : public Command
 {
  public:
-       cmd_alltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", 'o', 0)
+       CommandAlltime(InspIRCd *Instance) : Command(Instance, "ALLTIME", "o", 0)
        {
                this->source = "m_alltime.so";
                syntax.clear();
                translation.push_back(TR_END);
        }
 
-       CmdResult Handle(const char **parameters, int pcnt, User *user)
+       CmdResult Handle(const char* const* parameters, int pcnt, User *user)
        {
                char fmtdate[64];
-               char fmtdate2[64];
-               time_t now = ServerInstance->Time(false);
+               time_t now = ServerInstance->Time();
                strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now));
-               now = ServerInstance->Time(true);
-               strftime(fmtdate2, sizeof(fmtdate2), "%F %T", gmtime(&now));
                
-               int delta = ServerInstance->GetTimeDelta();
-               
-               string msg = ":" + string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
-                       ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds): Time with delta: "+ fmtdate2;
+               std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
+                       ServerInstance->Config->ServerName + " is: " + fmtdate;
                
                if (IS_LOCAL(user))
                {
@@ -45,11 +40,7 @@ class cmd_alltime : public Command
                }
                else
                {
-                       deque<string> params;
-                       params.push_back(user->nick);
-                       params.push_back(msg);
-                       Event ev((char *) &params, NULL, "send_push");
-                       ev.Send(ServerInstance);
+                       ServerInstance->PI->PushToClient(user, msg);
                }
 
                /* we want this routed out! */
@@ -60,13 +51,14 @@ class cmd_alltime : public Command
 
 class Modulealltime : public Module
 {
-       cmd_alltime *mycommand;
+       CommandAlltime *mycommand;
  public:
        Modulealltime(InspIRCd *Me)
                : Module(Me)
        {
-               mycommand = new cmd_alltime(ServerInstance);
+               mycommand = new CommandAlltime(ServerInstance);
                ServerInstance->AddCommand(mycommand);
+
        }
        
        virtual ~Modulealltime()