summaryrefslogtreecommitdiff
path: root/tao/GIOP_Message_Base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tao/GIOP_Message_Base.cpp')
-rw-r--r--tao/GIOP_Message_Base.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/tao/GIOP_Message_Base.cpp b/tao/GIOP_Message_Base.cpp
index 1fd19e2fbef..31031796e91 100644
--- a/tao/GIOP_Message_Base.cpp
+++ b/tao/GIOP_Message_Base.cpp
@@ -1,3 +1,4 @@
+// -*- C++ -*-
// $Id$
#include "tao/GIOP_Message_Base.h"
@@ -684,8 +685,12 @@ TAO_GIOP_Message_Base::process_request_message (TAO_Transport *transport,
}
#endif
if (TAO_debug_level > 9)
- { //due to alignment data block has an offset which needs to be corrected
- this->dump_msg ("recv",
+ {
+ char buf[48];
+ ACE_OS::sprintf (buf, "Transport[" ACE_SIZE_T_FORMAT_SPECIFIER_ASCII "] recv",
+ transport->id ());
+ //due to alignment data block has an offset which needs to be corrected
+ this->dump_msg (buf,
reinterpret_cast <u_char *> (db->base () + rd_pos - TAO_GIOP_MESSAGE_HEADER_LEN),
db->size () + rd_pos - TAO_GIOP_MESSAGE_HEADER_LEN);
}
@@ -796,7 +801,10 @@ TAO_GIOP_Message_Base::process_reply_message (
#endif
if (TAO_debug_level > 9)
{
- this->dump_msg ("recv",
+ char buf[48];
+ ACE_OS::sprintf (buf, "Transport[" ACE_SIZE_T_FORMAT_SPECIFIER_ASCII "] recv",
+ params.transport_->id ());
+ this->dump_msg (buf,
reinterpret_cast <u_char *> (db->base () + rd_pos - TAO_GIOP_MESSAGE_HEADER_LEN),
db->size () + rd_pos - TAO_GIOP_MESSAGE_HEADER_LEN);
}