|
| | ACE_SOCK_SEQPACK_Acceptor () |
| | Default constructor.
|
| |
| | ACE_SOCK_SEQPACK_Acceptor (const ACE_Addr &local_sap, int reuse_addr=0, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| |
| | ACE_SOCK_SEQPACK_Acceptor (const ACE_Multihomed_INET_Addr &local_sap, int reuse_addr=0, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| | Multihomed version of same.
|
| |
| | ACE_SOCK_SEQPACK_Acceptor (const ACE_Addr &local_sap, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g, u_long flags, int reuse_addr, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| |
| int | open (const ACE_Addr &local_sap, int reuse_addr=0, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| |
| int | open (const ACE_Multihomed_INET_Addr &local_sap, int reuse_addr=0, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| | Multihomed version of same.
|
| |
| int | open (const ACE_Addr &local_sap, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g, u_long flags, int reuse_addr, int protocol_family=PF_UNSPEC, int backlog=ACE_DEFAULT_BACKLOG, int protocol=132) |
| |
| int | close () |
| | Close the socket. Returns 0 on success and -1 on failure.
|
| |
| | ~ACE_SOCK_SEQPACK_Acceptor () |
| | Default dtor.
|
| |
| int | accept (ACE_SOCK_SEQPACK_Association &new_association, ACE_Addr *remote_addr=0, ACE_Time_Value *timeout=0, bool restart=true, bool reset_new_handle=false) const |
| |
| void | dump () const |
| | Dump the state of an object.
|
| |
| int | set_option (int level, int option, void *optval, int optlen) const |
| | Wrapper around the setsockopt system call.
|
| |
| int | get_option (int level, int option, void *optval, int *optlen) const |
| | Wrapper around the getsockopt system call.
|
| |
| int | close () |
| |
| int | get_local_addr (ACE_Addr &) const |
| |
| int | get_remote_addr (ACE_Addr &) const |
| |
| void | dump () const |
| | Dump the state of an object.
|
| |
| int | open (int type, int protocol_family, int protocol, int reuse_addr) |
| | Wrapper around the BSD-style socket system call (no QoS).
|
| |
| int | open (int type, int protocol_family, int protocol, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g, u_long flags, int reuse_addr) |
| | Wrapper around the QoS-enabled WSASocket function.
|
| |
| int | control (int cmd, void *) const |
| | Interface for <ioctl>.
|
| |
| int | enable (int value) const |
| |
| int | disable (int value) const |
| |
| ACE_HANDLE | get_handle () const |
| | Get the underlying handle.
|
| |
| void | set_handle (ACE_HANDLE handle) |
| | Set the underlying handle.
|
| |
| void | dump () const |
| | Dump the state of an object.
|
| |
Defines a factory that creates new ACE_Associations passively.
The <ACE_SOCK_SEQPACK_Acceptor> has its own "passive-mode" socket. This serves as a factory to create so-called "data-mode" sockets, which are what the ACE_SOCK_SEQPACK_Association encapsulates. Therefore, by inheriting from <ACE_SOCK>, <ACE_SOCK_SEQPACK_Acceptor> gets its very own socket.