Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / Strategies / SCIOP_Acceptor.inl
blob86cc2f06e577ec2f5f8e318a46e2f7db7c294a80
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE const ACE_INET_Addr&
5 TAO_SCIOP_Acceptor::address () const
7   ACE_ASSERT (this->addrs_ != 0);
9   // @@ This is busted.
10   //    The Implementation Repository will have to start supporting
11   //    IORs with multiple profiles.  For now, we just return the
12   //    first addr.
13   //                    -Ossama
14   return this->addrs_[0];
17 ACE_INLINE const ACE_INET_Addr *
18 TAO_SCIOP_Acceptor::endpoints ()
20   ACE_ASSERT (this->addrs_ != 0);
22   return this->addrs_;
25 TAO_END_VERSIONED_NAMESPACE_DECL