#include <Addr.h>
Inheritance diagram for ACE_Addr:


| Public Member Functions | |
| ACE_Addr (int type=-1, int size=-1) | |
| Initializes instance variables. | |
| virtual | ~ACE_Addr (void) | 
| Destructor. | |
| int | get_size (void) const | 
| Return the size of the address. | |
| void | set_size (int size) | 
| Sets the size of the address. | |
| int | get_type (void) const | 
| Get the type of the address. | |
| void | set_type (int type) | 
| Set the type of the address. | |
| virtual void * | get_addr (void) const | 
| Return a pointer to the address. | |
| virtual void | set_addr (void *, int len) | 
| Set a pointer to the address. | |
| bool | operator== (const ACE_Addr &sap) const | 
| Check for address equality. | |
| bool | operator!= (const ACE_Addr &sap) const | 
| Check for address inequality. | |
| void | base_set (int type, int size) | 
| Initializes instance variables. | |
| virtual unsigned long | hash (void) const | 
| void | dump (void) const | 
| Dump the state of an object. | |
| Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. | |
| Static Public Attributes | |
| const ACE_Addr | sap_any | 
| Wild-card address. | |
| Protected Attributes | |
| int | addr_type_ | 
| e.g., AF_UNIX, AF_INET, AF_SPIPE, etc. | |
| int | addr_size_ | 
| Number of bytes in the address. | |
Definition at line 32 of file Addr.h.
| 
 | ||||||||||||
| Initializes instance variables. 
 Definition at line 30 of file Addr.cpp. References base_set(). 
 00031 {
00032   this->base_set (type, size);
00033 }
 | 
| 
 | 
| Destructor. 
 Definition at line 35 of file Addr.cpp. 
 00036 {
00037 }
 | 
| 
 | ||||||||||||
| Initializes instance variables. 
 Definition at line 53 of file Addr.cpp. References addr_size_, and addr_type_. Referenced by ACE_Addr(), ACE_UNIX_Addr::set(), ACE_SPIPE_Addr::set(), ACE_Netlink_Addr::set(), ACE_INET_Addr::set(), ACE_FILE_Addr::set(), ACE_DEV_Addr::set(), ACE_ATM_Addr::set(), ACE_UNIX_Addr::set_addr(), ACE_SPIPE_Addr::set_addr(), ACE_ATM_Addr::set_addr(), ACE_INET_Addr::set_address(), and ACE_ATM_Addr::string_to_addr(). 
 00054 {
00055   this->addr_type_ = type;
00056   this->addr_size_ = size;
00057 }
 | 
| 
 | 
| Dump the state of an object. 
 Reimplemented in ACE_ATM_Addr, ACE_DEV_Addr, ACE_FILE_Addr, ACE_INET_Addr, ACE_MEM_Addr, ACE_SPIPE_Addr, and ACE_UNIX_Addr. Definition at line 60 of file Addr.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_LIB_TEXT, ACE_TRACE, and LM_DEBUG. 
 00061 {
00062 #if defined (ACE_HAS_DUMP)
00063   ACE_TRACE ("ACE_Addr::dump");
00064 
00065   ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00066   ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("addr_type_ = %d"), this->addr_type_));
00067   ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\naddr_size_ = %d"), this->addr_size_));
00068   ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00069 #endif /* ACE_HAS_DUMP */
00070 }
 | 
| 
 | 
| 
 | 
| 
 | 
| 
 | 
| Returns a hash value. This should be overwritten by a subclass that can produce a better hash value. Reimplemented in ACE_INET_Addr, ACE_MEM_Addr, and ACE_UNIX_Addr. Definition at line 56 of file Addr.inl. 
 00057 {
00058   return 0;
00059 }
 | 
| 
 | 
| Check for address inequality. 
 Definition at line 17 of file Addr.inl. References addr_size_, and addr_type_. 
 00018 {
00019   return (sap.addr_type_ != this->addr_type_ ||
00020           sap.addr_size_ != this->addr_size_   );
00021 }
 | 
| 
 | 
| Check for address equality. 
 Definition at line 10 of file Addr.inl. References addr_size_, and addr_type_. 
 00011 {
00012   return (sap.addr_type_ == this->addr_type_ &&
00013           sap.addr_size_ == this->addr_size_   );
00014 }
 | 
| 
 | ||||||||||||
| Set a pointer to the address. 
 Reimplemented in ACE_ATM_Addr, ACE_INET_Addr, ACE_MEM_Addr, ACE_Netlink_Addr, ACE_SPIPE_Addr, and ACE_UNIX_Addr. Definition at line 46 of file Addr.cpp. Referenced by ACE_TLI_Acceptor::accept(), ACE_WIN32_Asynch_Read_Dgram_Result::remote_address(), and ACE_POSIX_Asynch_Read_Dgram_Result::remote_address(). 
 00047 {
00048 }
 | 
| 
 | 
| Sets the size of the address. 
 Definition at line 34 of file Addr.inl. References addr_size_. Referenced by ACE_SPIPE_Acceptor::accept(), ACE_SOCK_SEQPACK_Acceptor::accept(), ACE_SOCK_Acceptor::accept(), ACE_LSOCK_Acceptor::accept(), ACE_WIN32_Asynch_Read_Dgram_Result::complete(), ACE_POSIX_Asynch_Read_Dgram_Result::complete(), ACE_SOCK::get_local_addr(), ACE_SOCK_SEQPACK_Association::get_local_addrs(), ACE_SOCK::get_remote_addr(), ACE_SOCK_SEQPACK_Association::get_remote_addrs(), ACE_SOCK_Dgram::recv(), ACE_ICMP_Socket::recv(), ACE_INET_Addr::set(), and ACE_INET_Addr::set_address(). 
 00035 {
00036   this->addr_size_ = size;
00037 }
 | 
| 
 | 
| Set the type of the address. 
 Definition at line 50 of file Addr.inl. References addr_type_. Referenced by ACE_SOCK_SEQPACK_Acceptor::accept(), ACE_SOCK_Acceptor::accept(), ACE_SOCK::get_local_addr(), ACE_SOCK_SEQPACK_Association::get_local_addrs(), ACE_SOCK::get_remote_addr(), ACE_SOCK_SEQPACK_Association::get_remote_addrs(), ACE_SOCK_Dgram::recv(), ACE_INET_Addr::set(), and ACE_INET_Addr::set_addr(). 
 00051 {
00052   this->addr_type_ = type;
00053 }
 | 
| 
 | 
| Declare the dynamic allocation hooks. 
 Reimplemented in ACE_ATM_Addr, ACE_DEV_Addr, ACE_FILE_Addr, ACE_INET_Addr, ACE_MEM_Addr, ACE_Netlink_Addr, ACE_SPIPE_Addr, and ACE_UNIX_Addr. | 
| 
 | 
| Number of bytes in the address. 
 Definition at line 93 of file Addr.h. Referenced by base_set(), get_size(), operator!=(), operator==(), and set_size(). | 
| 
 | 
| e.g., AF_UNIX, AF_INET, AF_SPIPE, etc. 
 Definition at line 90 of file Addr.h. Referenced by base_set(), get_type(), operator!=(), operator==(), and set_type(). | 
| 
 | 
| Wild-card address. 
 | 
 1.3.6
 
1.3.6