summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.i
blob: 5d396e84fd32a2a29bf93dd3613727c9d8061ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// -*- C++ -*-
//
// $Id$


ACE_INLINE
TAO_SSL_State_Guard::TAO_SSL_State_Guard (
  TAO_SSLIOP_Connection_Handler *handler,
  int &result)
  : handler_ (handler),
    previous_current_impl_ (0),
    current_impl_ (),
    setup_done_ (0)
{
  // 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_SSL_State_Guard::~TAO_SSL_State_Guard (void)
{
  this->handler_->teardown_ssl_state (this->previous_current_impl_,
                                      this->setup_done_);
}