(file) Return to cimserver.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Server

Diff for /pegasus/src/Server/cimserver.cpp between version 1.5 and 1.6

version 1.5, 2001/04/25 22:20:59 version 1.6, 2001/05/03 20:18:23
Line 31 
Line 31 
 #include <Pegasus/Common/Selector.h> #include <Pegasus/Common/Selector.h>
 #include <Pegasus/Common/OptionManager.h> #include <Pegasus/Common/OptionManager.h>
 #include <Pegasus/Server/CIMServer.h> #include <Pegasus/Server/CIMServer.h>
   #include <Pegasus/Common/PegasusVersion.h>
  
 using namespace Pegasus; using namespace Pegasus;
 using namespace std; using namespace std;
  
 const char PEGASUS_VERSION[]  = "Pegasus CIM Server - Version 0.7";  // const char PEGASUS_VERSION[]  = "Pegasus CIM Server - Version 0.7";
  
 void GetEnvironmentVariables( void GetEnvironmentVariables(
     const char* arg0,     const char* arg0,
Line 85 
Line 86 
 void PrintHelp(const char* arg0) void PrintHelp(const char* arg0)
 { {
     cout << '\n';     cout << '\n';
     cout << PEGASUS_VERSION << endl;      cout << PEGASUS_NAME << PEGASUS_VERSION << endl;
     cout << '\n';     cout << '\n';
     cout << "Usage: " << arg0 << " [-port <port_num> -t -h -v]\n";     cout << "Usage: " << arg0 << " [-port <port_num> -t -h -v]\n";
     cout << '\n';     cout << '\n';
Line 164 
Line 165 
         CIMServer server(&selector, pegasusHome);         CIMServer server(&selector, pegasusHome);
  
         char* address = portOption.allocateCString();         char* address = portOption.allocateCString();
   
           // Put out startup up message.
           // Put to cout if not daemon
           // ATTN: modify when we add daemon
           cout << PEGASUS_NAME << PEGASUS_VERSION <<
                " on port " << address << endl;
   
         server.bind(address);         server.bind(address);
         delete [] address;         delete [] address;
         server.runForever();         server.runForever();


Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2