sciop_acceptor.i
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· I 代码 · 共 24 行
I
24 行
// -*- C++ -*-
// SCIOP_Acceptor.i,v 1.2 2003/05/01 21:56:04 gthaker Exp
ACE_INLINE const ACE_INET_Addr&
TAO_SCIOP_Acceptor::address (void) const
{
ACE_ASSERT (this->addrs_ != 0);
// @@ This is busted.
// The Implementation Repository will have to start supporting
// IORs with multiple profiles. For now, we just return the
// first addr.
// -Ossama
return this->addrs_[0];
}
ACE_INLINE const ACE_INET_Addr *
TAO_SCIOP_Acceptor::endpoints (void)
{
ACE_ASSERT (this->addrs_ != 0);
return this->addrs_;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?