summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-10-03 11:34:20 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-10-03 11:34:20 +0000
commitb3868151be3d8bd6acdf6a909217a2827320a7f8 (patch)
treea57de040c70ec715b1005a5db1c163baa48ba470 /TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp
parenta155e1d1520902a8476a480c561c1dcdd66322af (diff)
downloadATCD-b3868151be3d8bd6acdf6a909217a2827320a7f8.tar.gz
ChangeLogTag:Mon Oct 3 06:33:20 2005 Bala Natarajan <bala_natarajan at symantec dot com>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp b/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp
index 2695752f4b8..509364cadc4 100644
--- a/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp
+++ b/TAO/orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp
@@ -122,7 +122,8 @@ TAO::HTIOP::Connection_Handler::open (void*)
if (!this->transport ()->post_open ((size_t) this->get_handle ()))
return -1;
- this->state_changed (TAO_LF_Event::LFS_SUCCESS);
+ this->state_changed (TAO_LF_Event::LFS_SUCCESS,
+ this->orb_core ()->leader_follower ());
return 0;
}
@@ -188,7 +189,8 @@ TAO::HTIOP::Connection_Handler::handle_close (ACE_HANDLE ,
int
TAO::HTIOP::Connection_Handler::close (u_long)
{
- this->state_changed (TAO_LF_Event::LFS_CONNECTION_CLOSED);
+ this->state_changed (TAO_LF_Event::LFS_CONNECTION_CLOSED,
+ this->orb_core ()->leader_follower ());
this->transport ()->remove_reference ();
return 0;
}