ACE  6.1.7
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Public Attributes
ACE_LSOCK_Dgram Class Reference

Create a Local ACE_SOCK datagram. More...

#include <LSOCK_Dgram.h>

Inheritance diagram for ACE_LSOCK_Dgram:
Inheritance graph
[legend]
Collaboration diagram for ACE_LSOCK_Dgram:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 ACE_LSOCK_Dgram (void)
 Default constructor.
 ACE_LSOCK_Dgram (const ACE_Addr &local, int protocol_family=PF_UNIX, int protocol=0)
 Initiate a local dgram.
int open (const ACE_Addr &local, int protocol_family=PF_UNIX, int protocol=0)
 Initiate a local dgram.
ACE_HANDLE get_handle (void) const
 Get handle.
void set_handle (ACE_HANDLE)
 Set handle.
void dump (void) const
 Dump the state of an object.
- Public Member Functions inherited from ACE_SOCK_Dgram
 ACE_SOCK_Dgram (void)
 Default constructor.
 ACE_SOCK_Dgram (const ACE_Addr &local, int protocol_family=ACE_PROTOCOL_FAMILY_INET, int protocol=0, int reuse_addr=0)
 ACE_SOCK_Dgram (const ACE_Addr &local, int protocol_family, int protocol, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g=0, u_long flags=0, int reuse_addr=0)
int open (const ACE_Addr &local, int protocol_family=ACE_PROTOCOL_FAMILY_INET, int protocol=0, int reuse_addr=0)
int open (const ACE_Addr &local, int protocol_family, int protocol, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g=0, u_long flags=0, int reuse_addr=0)
 ~ACE_SOCK_Dgram (void)
 Default dtor.
ssize_t send (const void *buf, size_t n, const ACE_Addr &addr, int flags=0) const
 Send an n byte buf to the datagram socket (uses <sendto(3)>).
ssize_t recv (void *buf, size_t n, ACE_Addr &addr, int flags=0) const
ssize_t recv (iovec *io_vec, ACE_Addr &addr, int flags=0, const ACE_Time_Value *timeout=0) const
ssize_t send (const iovec iov[], int n, const ACE_Addr &addr, int flags=0) const
ssize_t recv (iovec iov[], int n, ACE_Addr &addr, int flags=0) const
ssize_t recv (void *buf, size_t n, ACE_Addr &addr, int flags, const ACE_Time_Value *timeout) const
ssize_t send (const void *buf, size_t n, const ACE_Addr &addr, int flags, const ACE_Time_Value *timeout) const
ssize_t send (const iovec buffers[], int buffer_count, size_t &number_of_bytes_sent, int flags, const ACE_Addr &addr, ACE_OVERLAPPED *overlapped, ACE_OVERLAPPED_COMPLETION_FUNC func) const
ssize_t recv (iovec buffers[], int buffer_count, size_t &number_of_bytes_recvd, int &flags, ACE_Addr &addr, ACE_OVERLAPPED *overlapped, ACE_OVERLAPPED_COMPLETION_FUNC func) const
ssize_t send (const void *buf, size_t n, const ACE_Addr &addr, int flags, ACE_OVERLAPPED *overlapped, ACE_OVERLAPPED_COMPLETION_FUNC func) const
 Send an n byte buf to the datagram socket (uses <WSASendTo>).
ssize_t recv (void *buf, size_t n, ACE_Addr &addr, int flags, ACE_OVERLAPPED *overlapped, ACE_OVERLAPPED_COMPLETION_FUNC func) const
int set_nic (const ACE_TCHAR *net_if, int addr_family=AF_UNSPEC)
 Set NIC to use as multicast interface.
- Public Member Functions inherited from ACE_SOCK
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 (void)
int get_local_addr (ACE_Addr &) const
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.
- Public Member Functions inherited from ACE_IPC_SAP
int control (int cmd, void *) const
 Interface for <ioctl>.
int enable (int value) const
int disable (int value) const

Public Attributes

 ACE_ALLOC_HOOK_DECLARE
 Declare the dynamic allocation hooks.
- Public Attributes inherited from ACE_SOCK_Dgram
- Public Attributes inherited from ACE_SOCK
- Public Attributes inherited from ACE_IPC_SAP
- Public Attributes inherited from ACE_LSOCK

Additional Inherited Members

- Public Types inherited from ACE_SOCK_Dgram
typedef ACE_INET_Addr PEER_ADDR
- Protected Member Functions inherited from ACE_SOCK_Dgram
int shared_open (const ACE_Addr &local, int protocol_family)
 Open is shared by this and by <LSOCK_Dgram>.
int make_multicast_ifaddr (ip_mreq *mreq, const ACE_INET_Addr &mcast_addr, const ACE_TCHAR *net_if)
int make_multicast_ifaddr6 (ipv6_mreq *mreq, const ACE_INET_Addr &mcast_addr, const ACE_TCHAR *net_if)
- Protected Member Functions inherited from ACE_SOCK
 ACE_SOCK (int type, int protocol_family, int protocol=0, int reuse_addr=0)
 ACE_SOCK (int type, int protocol_family, int protocol, ACE_Protocol_Info *protocolinfo, ACE_SOCK_GROUP g, u_long flags, int reuse_addr)
 ACE_SOCK (void)
 ~ACE_SOCK (void)
 Protected destructor.
- Protected Member Functions inherited from ACE_IPC_SAP
 ACE_IPC_SAP (void)
 Default constructor.
 ~ACE_IPC_SAP (void)
 Protected destructor.
- Protected Member Functions inherited from ACE_LSOCK
 ACE_LSOCK (void)
 Default constructor.
 ACE_LSOCK (ACE_HANDLE handle)
 Initialize based on handle.

Detailed Description

Create a Local ACE_SOCK datagram.


Constructor & Destructor Documentation

ACE_LSOCK_Dgram::ACE_LSOCK_Dgram ( void  )

Default constructor.

ACE_LSOCK_Dgram::ACE_LSOCK_Dgram ( const ACE_Addr local,
int  protocol_family = PF_UNIX,
int  protocol = 0 
)

Initiate a local dgram.


Member Function Documentation

void ACE_LSOCK_Dgram::dump ( void  ) const

Dump the state of an object.

Reimplemented from ACE_LSOCK.

ACE_HANDLE ACE_LSOCK_Dgram::get_handle ( void  ) const
inline

Get handle.

Reimplemented from ACE_LSOCK.

int ACE_LSOCK_Dgram::open ( const ACE_Addr local,
int  protocol_family = PF_UNIX,
int  protocol = 0 
)

Initiate a local dgram.

void ACE_LSOCK_Dgram::set_handle ( ACE_HANDLE  h)
inline

Set handle.

Reimplemented from ACE_LSOCK.


Member Data Documentation

ACE_LSOCK_Dgram::ACE_ALLOC_HOOK_DECLARE

Declare the dynamic allocation hooks.

Reimplemented from ACE_LSOCK.


The documentation for this class was generated from the following files: