2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
5 ACE_XTI_ATM_Mcast::ACE_XTI_ATM_Mcast (ACE_TLI_Stream &new_stream,
6 const ACE_Addr &remote_sap,
7 ACE_Time_Value *timeout,
8 const ACE_Addr &local_sap,
18 ACE_TRACE ("ACE_XTI_ATM_Mcast::ACE_XTI_ATM_Mcast");
19 if (this->connect (new_stream, remote_sap, timeout, local_sap, reuse_addr,
22 udata, opt) == ACE_INVALID_HANDLE
23 && timeout != 0 && !(errno == EWOULDBLOCK || errno == ETIME))
24 ACELIB_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("ACE_TLI_Stream::ACE_TLI_Stream")));
27 // Connect the <new_stream> to the <remote_sap>, waiting up to
28 // <timeout> amount of time if necessary. This is simple a pass-
29 // through function to ACE_TLI_Connector::connect(). It is over-
30 // ridden to change the default device from TCP to XTI/ATM.
34 ACE_XTI_ATM_Mcast::connect (ACE_TLI_Stream &new_stream,
35 const ACE_Addr &remote_sap,
36 ACE_Time_Value *timeout,
37 const ACE_Addr &local_sap,
47 ACE_TRACE ("ACE_XTI_ATM_Mcast::connect");
48 return ACE_TLI_Connector::connect(new_stream,
62 ACE_END_VERSIONED_NAMESPACE_DECL