#include <LSOCK_Connector.h>
Inheritance diagram for ACE_LSOCK_Connector:


Public Types | |
| typedef ACE_UNIX_Addr | PEER_ADDR |
| typedef ACE_LSOCK_Stream | PEER_STREAM |
Public Methods | |
| ACE_LSOCK_Connector (void) | |
| Default constructor. More... | |
| ACE_LSOCK_Connector (ACE_LSOCK_Stream &new_stream, const ACE_UNIX_Addr &remote_sap, ACE_Time_Value *timeout=0, const ACE_Addr &local_sap=ACE_Addr::sap_any, int reuse_addr=0, int flags=0, int perms=0) | |
| int | connect (ACE_LSOCK_Stream &new_stream, const ACE_UNIX_Addr &remote_sap, ACE_Time_Value *timeout=0, const ACE_Addr &local_sap=ACE_Addr::sap_any, int reuse_addr=0, int flags=0, int perms=0) |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Definition at line 35 of file LSOCK_Connector.h.
|
|
Reimplemented from ACE_SOCK_Connector. Definition at line 71 of file LSOCK_Connector.h. |
|
|
Reimplemented from ACE_SOCK_Connector. Definition at line 72 of file LSOCK_Connector.h. |
|
|
Default constructor.
Definition at line 28 of file LSOCK_Connector.cpp. References ACE_TRACE.
00029 {
00030 ACE_TRACE ("ACE_LSOCK_Connector::ACE_LSOCK_Connector");
00031 }
|
|
||||||||||||||||||||||||||||||||
|
Actively connect and produce a <new_stream> if things go well. All arguments are relayed to the ACE_SOCK_Connector constructor for handling.
Definition at line 34 of file LSOCK_Connector.cpp. References ACE_TRACE, ACE_LSOCK_Stream::get_handle, and ACE_LSOCK_Stream::set_handle.
00041 : ACE_SOCK_Connector (new_stream, 00042 remote_sap, 00043 timeout, 00044 local_sap, 00045 reuse_addr, 00046 flags, 00047 perms) 00048 { 00049 ACE_TRACE ("ACE_LSOCK_Connector::ACE_LSOCK_Connector"); 00050 // This is necessary due to the weird inheritance relationships of 00051 // ACE_LSOCK_Stream. 00052 new_stream.set_handle (new_stream.get_handle ()); 00053 } |
|
||||||||||||||||||||||||||||||||
|
Actively connect and produce a <new_stream> if things go well. The
Definition at line 9 of file LSOCK_Connector.i. References ACE_TRACE, ACE_SOCK_Connector::connect, ACE_LSOCK_Stream::get_handle, and ACE_LSOCK_Stream::set_handle.
00016 {
00017 ACE_TRACE ("ACE_LSOCK_Connector::connect");
00018 int result = ACE_SOCK_Connector::connect (new_stream, remote_sap,
00019 timeout, local_sap,
00020 reuse_addr, flags, perms);
00021 if (result != -1)
00022 // This is necessary due to the weird inheritance relationships of ACE_LSOCK_Stream.
00023 new_stream.set_handle (new_stream.get_handle ());
00024 return result;
00025 }
|
|
|
Dump the state of an object.
Reimplemented from ACE_SOCK_Connector. Definition at line 19 of file LSOCK_Connector.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_LIB_TEXT, ACE_TRACE, and LM_DEBUG.
00020 {
00021 ACE_TRACE ("ACE_LSOCK_Connector::dump");
00022
00023 ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00024 ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n")));
00025 ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00026 }
|
|
|
Declare the dynamic allocation hooks.
Reimplemented from ACE_SOCK_Connector. Definition at line 78 of file LSOCK_Connector.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002