/[projects]/smsdaemon/common.cpp
ViewVC logotype

Diff of /smsdaemon/common.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 35 by torben, Mon Jun 9 18:15:53 2008 UTC revision 36 by torben, Tue Jun 10 15:34:19 2008 UTC
# Line 95  void Common::loadConfig(int argc, char* Line 95  void Common::loadConfig(int argc, char*
95          if (! ( isDaemon || isDebug))          if (! ( isDaemon || isDebug))
96                  printUsage();                  printUsage();
97  }  }
98    
99    
100    std::string Common::getStatusMessage()
101    {
102            long int now = time(0);
103    
104            long int diff = now - this->daemonStart;
105    
106    
107            std::ostringstream out;
108            out << "Uptime " << diff << " seconds. ";
109            out << "Messages received:" << this->smsCounter.incomming << ". ";
110            out << "Messages sent:" << this->smsCounter.outgoing << ".";
111            
112            return out.str();
113    }

Legend:
Removed from v.35  
changed lines
  Added in v.36

  ViewVC Help
Powered by ViewVC 1.1.20