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

Diff for /pegasus/src/Pegasus/Common/CimomMessage.cpp between version 1.13 and 1.20

version 1.13, 2002/03/19 21:03:37 version 1.20, 2005/02/05 22:59:23
Line 1 
Line 1 
 //%///-*-c++-*-/////////////////////////////////////////////////////////////////  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 BMC Software, Hewlett-Packard Company, IBM,  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // The Open Group, Tivoli Systems  // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 63 
Line 69 
  
  
  
 const Uint32 async_messages::HEARTBEAT =                       0x00000000;  const Uint32 async_messages::HEARTBEAT =                       DUMMY_MESSAGE;
 const Uint32 async_messages::REPLY =                           0x00000000;  const Uint32 async_messages::REPLY =                           DUMMY_MESSAGE;
 const Uint32 async_messages::REGISTER_CIM_SERVICE =            0x00000001;  const Uint32 async_messages::REGISTER_CIM_SERVICE =            NUMBER_OF_MESSAGES + 0x00000001;
 const Uint32 async_messages::DEREGISTER_CIM_SERVICE =          0x00000002;  const Uint32 async_messages::DEREGISTER_CIM_SERVICE =          NUMBER_OF_MESSAGES + 0x00000002;
 const Uint32 async_messages::UPDATE_CIM_SERVICE =              0x00000003;  const Uint32 async_messages::UPDATE_CIM_SERVICE =              NUMBER_OF_MESSAGES + 0x00000003;
 const Uint32 async_messages::IOCTL =                           0x00000004;  const Uint32 async_messages::IOCTL =                           NUMBER_OF_MESSAGES + 0x00000004;
 const Uint32 async_messages::CIMSERVICE_START =                0x00000005;  const Uint32 async_messages::CIMSERVICE_START =                NUMBER_OF_MESSAGES + 0x00000005;
 const Uint32 async_messages::CIMSERVICE_STOP =                 0x00000006;  const Uint32 async_messages::CIMSERVICE_STOP =                 NUMBER_OF_MESSAGES + 0x00000006;
 const Uint32 async_messages::CIMSERVICE_PAUSE =                0x00000007;  const Uint32 async_messages::CIMSERVICE_PAUSE =                NUMBER_OF_MESSAGES + 0x00000007;
 const Uint32 async_messages::CIMSERVICE_RESUME =               0x00000008;  const Uint32 async_messages::CIMSERVICE_RESUME =               NUMBER_OF_MESSAGES + 0x00000008;
   
 const Uint32 async_messages::ASYNC_OP_START =                  0x00000009;  const Uint32 async_messages::ASYNC_OP_START =                  NUMBER_OF_MESSAGES + 0x00000009;
 const Uint32 async_messages::ASYNC_OP_RESULT =                 0x0000000a;  const Uint32 async_messages::ASYNC_OP_RESULT =                 NUMBER_OF_MESSAGES + 0x0000000a;
 const Uint32 async_messages::ASYNC_LEGACY_OP_START =           0x0000000b;  const Uint32 async_messages::ASYNC_LEGACY_OP_START =           NUMBER_OF_MESSAGES + 0x0000000b;
 const Uint32 async_messages::ASYNC_LEGACY_OP_RESULT =          0x0000000c;  const Uint32 async_messages::ASYNC_LEGACY_OP_RESULT =          NUMBER_OF_MESSAGES + 0x0000000c;
   
 const Uint32 async_messages::FIND_SERVICE_Q =                  0x0000000d;  const Uint32 async_messages::FIND_SERVICE_Q =                  NUMBER_OF_MESSAGES + 0x0000000d;
 const Uint32 async_messages::FIND_SERVICE_Q_RESULT =           0x0000000e;  const Uint32 async_messages::FIND_SERVICE_Q_RESULT =           NUMBER_OF_MESSAGES + 0x0000000e;
 const Uint32 async_messages::ENUMERATE_SERVICE =               0x0000000f;  const Uint32 async_messages::ENUMERATE_SERVICE =               NUMBER_OF_MESSAGES + 0x0000000f;
 const Uint32 async_messages::ENUMERATE_SERVICE_RESULT =        0x00000010;  const Uint32 async_messages::ENUMERATE_SERVICE_RESULT =        NUMBER_OF_MESSAGES + 0x00000010;
   
 const Uint32 async_messages::REGISTERED_MODULE =               0x00000011;  const Uint32 async_messages::REGISTERED_MODULE =               NUMBER_OF_MESSAGES + 0x00000011;
 const Uint32 async_messages::DEREGISTERED_MODULE =             0x00000012;  const Uint32 async_messages::DEREGISTERED_MODULE =             NUMBER_OF_MESSAGES + 0x00000012;
 const Uint32 async_messages::FIND_MODULE_IN_SERVICE =          0x00000013;  const Uint32 async_messages::FIND_MODULE_IN_SERVICE =          NUMBER_OF_MESSAGES + 0x00000013;
 const Uint32 async_messages::FIND_MODULE_IN_SERVICE_RESPONSE = 0x00000014;  const Uint32 async_messages::FIND_MODULE_IN_SERVICE_RESPONSE = NUMBER_OF_MESSAGES + 0x00000014;
  
 const Uint32 async_messages::ASYNC_MODULE_OP_START =           0x00000015;  const Uint32 async_messages::ASYNC_MODULE_OP_START =           NUMBER_OF_MESSAGES + 0x00000015;
 const Uint32 async_messages::ASYNC_MODULE_OP_RESULT  =         0x00000016;  const Uint32 async_messages::ASYNC_MODULE_OP_RESULT  =         NUMBER_OF_MESSAGES + 0x00000016;
  
  
  
Line 432 
Line 438 
    _res->put_async(this);    _res->put_async(this);
 } }
  
   Message * AsyncModuleOperationResult::get_result(void)
   {
      Message *ret = _res;
      _res = 0;
      ret->put_async(0);
      return ret;
   }
   
   
 AsyncLegacyOperationStart::AsyncLegacyOperationStart(Uint32 routing, AsyncLegacyOperationStart::AsyncLegacyOperationStart(Uint32 routing,
                                                      AsyncOpNode *operation,                                                      AsyncOpNode *operation,
                                                      Uint32 destination,                                                      Uint32 destination,
Line 553 
Line 568 
  
 } }
  
   AsyncMessage::~AsyncMessage(void)
   {
   }
   
   AsyncRequest::~AsyncRequest(void)
   {
   }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.20

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2