NAME
ACE_UNIX_Addr -
Defines the ``UNIX domain address family'' address format.
SYNOPSIS
#include <ace/UNIX_Addr.h>
class ACE_UNIX_Addr : public ACE_Addr
{
public:
ACE_UNIX_Addr (void);
ACE_UNIX_Addr (const ACE_UNIX_Addr &sa);
ACE_UNIX_Addr (const char rendezvous_point[]);
ACE_UNIX_Addr (const sockaddr_un *, int len);
void set (const char rendezvous_point[]);
void set (const sockaddr_un *, int len);
virtual void *get_addr (void) const;
virtual void set_addr (void *addr, int len);
virtual int addr_to_string (char addr[], size_t) const;
virtual int string_to_addr (const char addr[]);
virtual int operator == (const ACE_Addr &SAP) const;
virtual int operator != (const ACE_Addr &SAP) const;
const char *get_path_name (void) const;
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
private:
sockaddr_un unix_addr_;
};
Initialization methods.
ACE_UNIX_Addr (void);
ACE_UNIX_Addr (const ACE_UNIX_Addr &sa);
ACE_UNIX_Addr (const char rendezvous_point[]);
Creates an ACE_UNIX_Addr from a string.
ACE_UNIX_Addr (const sockaddr_un *, int len);
Creates an ACE_INET_Addr from a sockaddr_un structure.
void set (const char rendezvous_point[]);
Creates an ACE_UNIX_Addr from a string.
void set (const sockaddr_un *, int len);
Creates an ACE_INET_Addr from a sockaddr_un structure.
virtual void *get_addr (void) const;
Return a pointer to the underlying network address.
virtual void set_addr (void *addr, int len);
Set a pointer to the underlying network address.
virtual int addr_to_string (char addr[], size_t) const;
Transform the current address into string format.
virtual int string_to_addr (const char addr[]);
Transform the string into the current addressing format.
virtual int operator == (const ACE_Addr &SAP) const;
Compare two addresses for equality.
virtual int operator != (const ACE_Addr &SAP) const;
Compare two addresses for inequality.
const char *get_path_name (void) const;
Return the path name of the underlying rendezvous point.
void dump (void) const;
Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
Declare the dynamic allocation hooks.
AUTHOR
Doug Schmidt
LIBRARY
ace