📄 iiop_ssl_connection_handler.inl
字号:
// -*- C++ -*-
//
// IIOP_SSL_Connection_Handler.inl,v 1.1 2001/09/22 04:41:27 othman Exp
ACE_INLINE
TAO_Null_SSL_State_Guard::TAO_Null_SSL_State_Guard (
TAO_SSLIOP_Current_ptr current,
int &result)
: previous_current_impl_ (0),
current_ (current), // No need to duplicate
setup_done_ (0)
{
// Invalidate the TSS SSL session state to make sure that SSL state
// from a previous SSL connection is not confused with this non-SSL
// connection.
current->setup (this->previous_current_impl_,
0, // Null SSL state
this->setup_done_);
result = 0;
}
ACE_INLINE
TAO_Null_SSL_State_Guard::~TAO_Null_SSL_State_Guard (void)
{
// Restore the previous TSS SSL state.
this->current_->teardown (this->previous_current_impl_,
this->setup_done_);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -