Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tao / IIOP_Endpoint.inl
blob06ba4371cc3a8e2d2f145c0d6fb2f4e4dfc45e54
1 // -*- C++ -*-
2 #if defined (TAO_HAS_IIOP) && (TAO_HAS_IIOP != 0)
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 ACE_INLINE const char *
7 TAO_IIOP_Endpoint::host () const
9   return this->host_.in ();
12 ACE_INLINE CORBA::UShort
13 TAO_IIOP_Endpoint::port () const
15   return this->port_;
18 ACE_INLINE CORBA::UShort
19 TAO_IIOP_Endpoint::port (CORBA::UShort p)
21   return this->port_ = p;
24 #if defined (ACE_HAS_IPV6)
25 ACE_INLINE bool
26 TAO_IIOP_Endpoint::is_ipv6_decimal () const
28   return this->is_ipv6_decimal_;
30 #endif /* ACE_HAS_IPV6 */
32 TAO_END_VERSIONED_NAMESPACE_DECL
34 #endif /* TAO_HAS_IIOP && TAO_HAS_IIOP != 0 */