3 // $Id: UPIPE_Connector.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 // Creates a Local ACE_UPIPE.
9 ACE_UPIPE_Connector::ACE_UPIPE_Connector (ACE_UPIPE_Stream &new_stream,
10 const ACE_UPIPE_Addr &addr,
11 ACE_Time_Value *timeout,
12 const ACE_Addr &local_sap,
17 ACE_TRACE ("ACE_UPIPE_Connector::ACE_UPIPE_Connector");
18 if (this->connect (new_stream, addr, timeout, local_sap,
19 reuse_addr, flags, perms) == -1
20 && timeout != 0 && !(errno == EWOULDBLOCK || errno == ETIME))
22 ACE_TEXT ("address %s, %p\n"),
23 addr.get_path_name (),
24 ACE_TEXT ("ACE_UPIPE_Connector")));
28 ACE_UPIPE_Connector::reset_new_handle (ACE_HANDLE /* handle */)
30 // Nothing to do here since the handle is not a socket
34 ACE_END_VERSIONED_NAMESPACE_DECL