security_current.inl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· INL 代码 · 共 23 行
INL
23 行
// -*- C++ -*-
//
// Security_Current.inl,v 1.1 2001/03/18 09:57:44 othman Exp
ACE_INLINE size_t
TAO_Security_Current::tss_slot (void) const
{
return this->tss_slot_;
}
ACE_INLINE TAO_Security_Current_Impl *
TAO_Security_Current::implementation (void)
{
if (this->orb_core_ == 0 && this->init () != 0)
return 0;
TAO_Security_Current_Impl *impl =
ACE_static_cast (TAO_Security_Current_Impl *,
this->orb_core_->get_tss_resource (this->tss_slot_));
return impl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?