1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* -*- C++ -*- */
// $Id$
// SOCK_Connector.i
#include "ace/Log_Msg.h"
// This constructor is used by a client when it wants to connect to
// the specified REMOTE_SAP address using a blocking open.
inline
ACE_SOCK_Connector::ACE_SOCK_Connector (ACE_SOCK_Stream &new_stream,
const ACE_Addr &remote_sap,
ACE_Time_Value *timeout,
const ACE_Addr &local_sap,
int reuse_addr,
int flags,
int perms,
int protocol_family,
int protocol)
{
ACE_TRACE ("ACE_SOCK_Connector::ACE_SOCK_Connector");
if (this->connect (new_stream, remote_sap, timeout, local_sap,
reuse_addr, flags, perms, protocol_family, protocol) == -1
&& timeout != 0 && !(errno == EWOULDBLOCK || errno == ETIMEDOUT))
ACE_ERROR ((LM_ERROR, "%p\n", "ACE_SOCK_Connector::ACE_SOCK_Connector"));
}
// Do-nothing constructor...
inline
ACE_SOCK_Connector::ACE_SOCK_Connector (void)
{
ACE_TRACE ("ACE_SOCK_Connector::ACE_SOCK_Connector");
}
|