summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Transport.cpp
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2000-11-26 03:17:12 +0000
committerbala <balanatarajan@users.noreply.github.com>2000-11-26 03:17:12 +0000
commitce15c43044f2bb302ccb34f40817fffff77e5088 (patch)
treebf7858fb8969da67f17a07e315f2bfae973c4251 /TAO/tao/IIOP_Transport.cpp
parent30be622d446e0a37d67834ed1d96f649a8ce7127 (diff)
downloadATCD-ce15c43044f2bb302ccb34f40817fffff77e5088.tar.gz
ChangeLogTag: Sat Nov 25 21:09:54 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/IIOP_Transport.cpp')
-rw-r--r--TAO/tao/IIOP_Transport.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/TAO/tao/IIOP_Transport.cpp b/TAO/tao/IIOP_Transport.cpp
index 786abdc88b0..81f925bf754 100644
--- a/TAO/tao/IIOP_Transport.cpp
+++ b/TAO/tao/IIOP_Transport.cpp
@@ -111,12 +111,14 @@ TAO_IIOP_Server_Transport::service_handler (void)
void
TAO_IIOP_Server_Transport::close_connection (void)
{
+ // Now close the handler
+ this->handler_->handle_close ();
+
// Purge the entry from the Cache map first and then close the
// handler
this->handler_->purge_entry ();
- // Now close the handler
- this->handler_->handle_close ();
+
}
@@ -411,12 +413,12 @@ TAO_IIOP_Client_Transport::send_request_header (TAO_Operation_Details &opdetails
void
TAO_IIOP_Client_Transport::close_connection (void)
{
+ // Now close the handler
+ this->handler_->handle_close ();
+
// Purge the entry from the Cache map first and then close the
// handler
this->handler_->purge_entry ();
-
- // Now close the handler
- this->handler_->handle_close ();
}
// *********************************************************************