summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Mux_Strategy.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 01:56:25 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-10 01:56:25 +0000
commit4311bd8807d413c0044615c3118fe2bb901a36f0 (patch)
treec70e78fa11fc23fdc4d25e37a9d7cc06d9bfb431 /TAO/tao/Transport_Mux_Strategy.cpp
parente34ab1057bb644f011959028ade8d8e360e5c8af (diff)
downloadATCD-4311bd8807d413c0044615c3118fe2bb901a36f0.tar.gz
ChangeLogTag:Wed Jun 9 20:16:36 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
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 *)
{
}