(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.26 and 1.27

version 1.26, 2001/06/19 14:20:57 version 1.27, 2001/06/19 23:53:41
Line 147 
Line 147 
                     "Removes Pegasus as a Windows NT Service "},                     "Removes Pegasus as a Windows NT Service "},
         {"debug", "false", false, Option::BOOLEAN, 0, 0, "d",         {"debug", "false", false, Option::BOOLEAN, 0, 0, "d",
                         "Not Used "},                         "Not Used "},
         {"slp", "true", false, Option::BOOLEAN, 0, 0, "slp",          {"slp", "false", false, Option::BOOLEAN, 0, 0, "slp",
                         "Register Pegasus as a Service with SLP"}                         "Register Pegasus as a Service with SLP"}
     };     };
     const Uint32 NUM_OPTIONS = sizeof(optionsTable) / sizeof(optionsTable[0]);     const Uint32 NUM_OPTIONS = sizeof(optionsTable) / sizeof(optionsTable[0]);
Line 303 
Line 303 
         Logger::clean(logsDirectory);;         Logger::clean(logsDirectory);;
     }     }
  
       // Option to Display the options table.  Primarily
       // a diagnostic tool.
       if (om.valueEquals("options", "true"))
           om.print();
   
     // Leave this in until people get familiar with the logs.     // Leave this in until people get familiar with the logs.
     cout << "Logs Directory = " << logsDirectory << endl;     cout << "Logs Directory = " << logsDirectory << endl;
  
       Boolean useSLP = (om.valueEquals("slp", "true")) ? true: false;
  
     char* address = portOption.allocateCString();     char* address = portOption.allocateCString();
  
Line 316 
Line 322 
     cout <<"Started..."     cout <<"Started..."
          << (pegasusIOTrace ? " Tracing to Display ": " ")          << (pegasusIOTrace ? " Tracing to Display ": " ")
          << (pegasusIOLog ? " Tracing to Log ": " ")          << (pegasusIOLog ? " Tracing to Log ": " ")
            << (useSLP ? " SLP reg. " : " No SLP ")
         << endl;         << endl;
  
     // Option to Display the options table.  Primarily  
     // a diagnostic tool.  
     if (om.valueEquals("options", "true"))  
         om.print();  
   
     Boolean useSLP = (om.valueEquals("slp", "true")) ? true: false;  
   
     // Put server start message to the logger     // Put server start message to the logger
     Logger::put(Logger::STANDARD_LOG, "CIMServer", Logger::INFORMATION,     Logger::put(Logger::STANDARD_LOG, "CIMServer", Logger::INFORMATION,
         "Start $0 $1 port $2 $3 ",          "Start $0 $1 port $2 $3 $4",
                 PEGASUS_NAME,                 PEGASUS_NAME,
                 PEGASUS_VERSION,                 PEGASUS_VERSION,
                 address,                 address,


Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2