summaryrefslogtreecommitdiff
path: root/TAO/tao/Connect_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Connect_Strategy.cpp')
-rw-r--r--TAO/tao/Connect_Strategy.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/tao/Connect_Strategy.cpp b/TAO/tao/Connect_Strategy.cpp
index f0cd072677f..8baa2aba950 100644
--- a/TAO/tao/Connect_Strategy.cpp
+++ b/TAO/tao/Connect_Strategy.cpp
@@ -15,26 +15,3 @@ TAO_Connect_Strategy::TAO_Connect_Strategy (TAO_ORB_Core *orb_core)
TAO_Connect_Strategy::~TAO_Connect_Strategy (void)
{
}
-
-int
-TAO_Connect_Strategy::post_failed_connect (TAO_Connection_Handler *ch,
- int is_finalized)
-{
- int ref = 0;
- if (!is_finalized)
- {
- // We need to do this here else we will leak memory. We cannot call
- // close_connection () for the following reasons
- // . the event_handlers get_handle () will return an
- // ACE_INVALID_HANDLE as things havent been shutdown
- // properly.
- // . We cannot relax the conditions since the conditions are right
- // for other natural cases ie. LF
- // Under these odd circumstances we need to take care of things
- // ourseleves
- ch->transport (0);
- ref = ch->decr_refcount ();
- }
-
- return ref;
-}