summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i')
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i29
1 files changed, 0 insertions, 29 deletions
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i
deleted file mode 100644
index 193fc62f426..00000000000
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i
+++ /dev/null
@@ -1,29 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE
-TAO::SSLIOP::State_Guard::State_Guard (
- TAO::SSLIOP::Connection_Handler *handler,
- int &result)
- : handler_ (handler),
- previous_current_impl_ (0),
- current_impl_ (),
- setup_done_ (false)
-{
- // Set up the SSLIOP::Current object.
- result = this->handler_->setup_ssl_state (this->previous_current_impl_,
- &(this->current_impl_),
- this->setup_done_);
-}
-
-ACE_INLINE
-TAO::SSLIOP::State_Guard::~State_Guard (void)
-{
- this->handler_->teardown_ssl_state (this->previous_current_impl_,
- this->setup_done_);
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL