#include <Strategies_T.h>
Collaboration diagram for ACE_Accept_Strategy< SVC_HANDLER, >:
Public Types | |
typedef ACE_PEER_ACCEPTOR_ADDR | addr_type |
typedef ACE_PEER_ACCEPTOR | acceptor_type |
typedef SVC_HANDLER | handler_type |
typedef ACE_TYPENAME SVC_HANDLER::stream_type | stream_type |
Public Member Functions | |
ACE_Accept_Strategy (ACE_Reactor *reactor=ACE_Reactor::instance()) | |
Default constructor. | |
ACE_Accept_Strategy (const ACE_PEER_ACCEPTOR_ADDR &local_addr, int restart=0, ACE_Reactor *reactor=ACE_Reactor::instance()) | |
Initialize the <peer_acceptor_> with <local_addr>. | |
virtual int | open (const ACE_PEER_ACCEPTOR_ADDR &local_addr, int reuse_addr=0) |
virtual ACE_HANDLE | get_handle (void) const |
Return the underlying ACE_HANDLE of the <peer_acceptor_>. | |
virtual ACE_PEER_ACCEPTOR & | acceptor (void) const |
Return a reference to the <peer_acceptor_>. | |
virtual | ~ACE_Accept_Strategy (void) |
virtual int | accept_svc_handler (SVC_HANDLER *) |
void | dump (void) const |
Dump the state of an object. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Protected Attributes | |
ACE_PEER_ACCEPTOR | peer_acceptor_ |
Factory that establishes connections passively. | |
ACE_Reactor * | reactor_ |
Pointer to the reactor used by the Acceptor. | |
int | reuse_addr_ |
Needed to reopen the socket if <accept> fails. | |
ACE_PEER_ACCEPTOR_ADDR | peer_acceptor_addr_ |
Needed to reopen the socket if <accept> fails. |
This class provides a strategy that manages passive connection acceptance of a client.
|
|
|
|
|
|
|
|
|
Default constructor.
|
|
Initialize the <peer_acceptor_> with <local_addr>.
|
|
|
|
The default behavior delegates to the <accept> method of the PEER_ACCEPTOR. |
|
Return a reference to the <peer_acceptor_>.
|
|
Dump the state of an object.
|
|
Return the underlying ACE_HANDLE of the <peer_acceptor_>.
|
|
Initialize the <peer_acceptor_> with <local_addr>, indicating whether to <reuse_addr> if it's already in use. |
|
Declare the dynamic allocation hooks.
|
|
Factory that establishes connections passively.
|
|
Needed to reopen the socket if <accept> fails.
|
|
Pointer to the reactor used by the Acceptor.
|
|
Needed to reopen the socket if <accept> fails.
|