summaryrefslogtreecommitdiff
path: root/TAO/tao/Reply_Dispatcher.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-11 15:01:24 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-11 15:01:24 +0000
commit6fe4a5ae09087ff6949c40ef87878ea1938ed8f6 (patch)
treeb53ede7af5ae4fee95819df8ebb37df8514ead39 /TAO/tao/Reply_Dispatcher.cpp
parent1943426be215a7a9ab777be97adde88891daa6c1 (diff)
downloadATCD-6fe4a5ae09087ff6949c40ef87878ea1938ed8f6.tar.gz
ChangeLogTag:Wed Aug 11 09:18:53 1999 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Reply_Dispatcher.cpp')
-rw-r--r--TAO/tao/Reply_Dispatcher.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/TAO/tao/Reply_Dispatcher.cpp b/TAO/tao/Reply_Dispatcher.cpp
index 3e17c854ace..1ecb5c3782c 100644
--- a/TAO/tao/Reply_Dispatcher.cpp
+++ b/TAO/tao/Reply_Dispatcher.cpp
@@ -10,6 +10,7 @@
// Constructor.
TAO_Reply_Dispatcher::TAO_Reply_Dispatcher (void)
+ : reply_service_info_ ()
// : reply_received_ (0)
{
}
@@ -55,7 +56,7 @@ TAO_Synch_Reply_Dispatcher::~TAO_Synch_Reply_Dispatcher (void)
int
TAO_Synch_Reply_Dispatcher::dispatch_reply (CORBA::ULong reply_status,
const TAO_GIOP_Version &version,
- TAO_GIOP_ServiceContextList &reply_ctx,
+ IOP::ServiceContextList &reply_ctx,
TAO_GIOP_Message_State *message_state)
{
this->reply_received_ = 1;
@@ -68,8 +69,8 @@ TAO_Synch_Reply_Dispatcher::dispatch_reply (CORBA::ULong reply_status,
// this data.
CORBA::ULong max = reply_ctx.maximum ();
CORBA::ULong len = reply_ctx.length ();
- TAO_GIOP_ServiceContext* context_list = reply_ctx.get_buffer (1);
- this->reply_ctx_.replace (max, len, context_list, 1);
+ IOP::ServiceContext* context_list = reply_ctx.get_buffer (1);
+ this->reply_service_info_.replace (max, len, context_list, 1);
// Steal the buffer so that no copying is done.
this->reply_cdr_.steal_from (message_state->cdr);
@@ -141,7 +142,7 @@ TAO_Asynch_Reply_Dispatcher::~TAO_Asynch_Reply_Dispatcher (void)
int
TAO_Asynch_Reply_Dispatcher::dispatch_reply (CORBA::ULong reply_status,
const TAO_GIOP_Version &version,
- TAO_GIOP_ServiceContextList &reply_ctx,
+ IOP::ServiceContextList &reply_ctx,
TAO_GIOP_Message_State *message_state)
{
// this->reply_received_ = 1;
@@ -154,8 +155,8 @@ TAO_Asynch_Reply_Dispatcher::dispatch_reply (CORBA::ULong reply_status,
// this data.
CORBA::ULong max = reply_ctx.maximum ();
CORBA::ULong len = reply_ctx.length ();
- TAO_GIOP_ServiceContext* context_list = reply_ctx.get_buffer (1);
- this->reply_ctx_.replace (max, len, context_list, 1);
+ IOP::ServiceContext* context_list = reply_ctx.get_buffer (1);
+ this->reply_service_info_.replace (max, len, context_list, 1);
if (TAO_debug_level >= 4)
{