summaryrefslogtreecommitdiff
path: root/TAO/tao/LocateRequest_Invocation.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-29 19:18:13 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-29 19:18:13 +0000
commitcd080eec9c415b6a118394ce352f43b1a99a5ea5 (patch)
tree5ebd0390906c1422767d746e55d40a7742c18a88 /TAO/tao/LocateRequest_Invocation.cpp
parent0172e8e44bc1eeb4458e080a72decc25a7a48dc6 (diff)
downloadATCD-cd080eec9c415b6a118394ce352f43b1a99a5ea5.tar.gz
Mon Jan 29 19:11:14 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/LocateRequest_Invocation.cpp')
-rw-r--r--TAO/tao/LocateRequest_Invocation.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/TAO/tao/LocateRequest_Invocation.cpp b/TAO/tao/LocateRequest_Invocation.cpp
index 6095fdcd4e3..4d4eb3d9b76 100644
--- a/TAO/tao/LocateRequest_Invocation.cpp
+++ b/TAO/tao/LocateRequest_Invocation.cpp
@@ -59,15 +59,12 @@ namespace TAO
TAO_Target_Specification tspec;
this->init_target_spec (tspec);
- TAO_Transport *transport =
- this->resolver_.transport ();
+ TAO_Transport *transport = this->resolver_.transport ();
TAO_OutputCDR &cdr = transport->out_stream ();
int const retval =
- transport->generate_locate_request (tspec,
- this->details_,
- cdr);
+ transport->generate_locate_request (tspec, this->details_, cdr);
if (retval == -1)
return TAO_INVOKE_FAILURE;
@@ -75,9 +72,7 @@ namespace TAO
countdown.update ();
Invocation_Status s =
- this->send_message (cdr,
- TAO_Transport::TAO_TWOWAY_REQUEST,
- max_wait_time);
+ this->send_message (cdr, TAO_Transport::TAO_TWOWAY_REQUEST, max_wait_time);
if (s != TAO_INVOKE_SUCCESS)
return s;
@@ -91,9 +86,7 @@ namespace TAO
this->resolver_.transport_released ();
s =
- this->wait_for_reply (max_wait_time,
- rd,
- dispatch_guard);
+ this->wait_for_reply (max_wait_time, rd, dispatch_guard);
s = this->check_reply (rd);