ssliop_connection_handler.i

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· I 代码 · 共 27 行

I
27
字号
// -*- C++ -*-
//
// SSLIOP_Connection_Handler.i,v 1.3 2001/09/22 04:41:27 othman Exp


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_);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?