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

Diff for /pegasus/src/Pegasus/Common/AnonymousPipe.cpp between version 1.9 and 1.12

version 1.9, 2006/11/07 21:30:36 version 1.12, 2007/02/13 19:21:44
Line 27 
Line 27 
 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 // //
 //==============================================================================  //=============================================================================
 // //
 //%/////////////////////////////////////////////////////////////////////////////  //%////////////////////////////////////////////////////////////////////////////
  
 #include <Pegasus/Common/CIMMessageSerializer.h> #include <Pegasus/Common/CIMMessageSerializer.h>
 #include <Pegasus/Common/CIMMessageDeserializer.h> #include <Pegasus/Common/CIMMessageDeserializer.h>
Line 82 
Line 82 
         Uint32 messageLength = messageBuffer.size ();         Uint32 messageLength = messageBuffer.size ();
         const char * messageData = messageBuffer.getData ();         const char * messageData = messageBuffer.getData ();
  
         writeStatus = writeBuffer ((const char *) &messageLength,          writeStatus =
             sizeof (Uint32));              writeBuffer((const char*) &messageLength, sizeof(Uint32));
  
         if (writeStatus == STATUS_SUCCESS)         if (writeStatus == STATUS_SUCCESS)
         {         {
             writeStatus = writeBuffer (messageBuffer.getData (),              writeStatus = writeBuffer(messageData, messageLength);
                 messageLength);  
         }         }
     }     }
     catch (...)     catch (...)


Legend:
Removed from v.1.9  
changed lines
  Added in v.1.12

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2