summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Mux_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Mux_Strategy.cpp')
-rw-r--r--TAO/tao/Transport_Mux_Strategy.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/TAO/tao/Transport_Mux_Strategy.cpp b/TAO/tao/Transport_Mux_Strategy.cpp
index 9133f0cc6a1..f08cc37b575 100644
--- a/TAO/tao/Transport_Mux_Strategy.cpp
+++ b/TAO/tao/Transport_Mux_Strategy.cpp
@@ -54,24 +54,24 @@ TAO_Muxed_TMS::dispatch_reply (CORBA::ULong request_id,
CORBA::ULong reply_status,
const TAO_GIOP_Version& version,
TAO_GIOP_ServiceContextList& reply_ctx,
- TAO_InputCDR* cdr)
+ TAO_GIOP_Message_State* message_state)
{
// @@
return -1;
}
-TAO_InputCDR *
-TAO_Muxed_TMS::get_cdr_stream (void)
+TAO_GIOP_Message_State *
+TAO_Muxed_TMS::get_message_state (void)
{
return 0;
}
void
-TAO_Muxed_TMS::destroy_cdr_stream (TAO_InputCDR *)
+TAO_Muxed_TMS::destroy_message_state (TAO_GIOP_Message_State *)
{
// @@ Implement.
- // delete cdr;
- // cdr = 0;
+ // delete message_state;
+ // message_state = 0;
}
// *********************************************************************
@@ -111,7 +111,7 @@ TAO_Exclusive_TMS::dispatch_reply (CORBA::ULong request_id,
CORBA::ULong reply_status,
const TAO_GIOP_Version& version,
TAO_GIOP_ServiceContextList& reply_ctx,
- TAO_InputCDR* cdr)
+ TAO_GIOP_Message_State* message_state)
{
if (this->request_id_ != request_id)
{
@@ -129,20 +129,20 @@ TAO_Exclusive_TMS::dispatch_reply (CORBA::ULong request_id,
return rd->dispatch_reply (reply_status,
version,
reply_ctx,
- cdr);
+ message_state);
}
-TAO_InputCDR *
-TAO_Exclusive_TMS::get_cdr_stream (void)
+TAO_GIOP_Message_State *
+TAO_Exclusive_TMS::get_message_state (void)
{
if (this->rd_ == 0)
return 0;
- return this->rd_->cdr ();
+ return this->rd_->message_state ();
}
// NOOP function.
void
-TAO_Exclusive_TMS::destroy_cdr_stream (TAO_InputCDR *)
+TAO_Exclusive_TMS::destroy_message_state (TAO_GIOP_Message_State *)
{
}