#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.
|
|
|
Destructor.
Definition at line 36 of file Addr.cpp.
00037 {
00038 }
|
|
||||||||||||
|
Initializes instance variables.
Definition at line 54 of file Addr.cpp. References addr_size_, and addr_type_. Referenced by ACE_UNIX_Addr::set(), ACE_SPIPE_Addr::set(), ACE_INET_Addr::set(), ACE_FILE_Addr::set(), ACE_DEV_Addr::set(), ACE_UNIX_Addr::set_addr(), ACE_SPIPE_Addr::set_addr(), and ACE_INET_Addr::set_address().
00055 {
00056 this->addr_type_ = type;
00057 this->addr_size_ = size;
00058 }
|
|
|
Dump the state of an object.
Reimplemented in ACE_DEV_Addr, ACE_FILE_Addr, ACE_INET_Addr, ACE_SPIPE_Addr, and ACE_UNIX_Addr. Definition at line 61 of file Addr.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TEXT, ACE_TRACE, and LM_DEBUG.
00062 {
00063 #if defined (ACE_HAS_DUMP)
00064 ACE_TRACE ("ACE_Addr::dump");
00065
00066 ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00067 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("addr_type_ = %d"), this->addr_type_));
00068 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\naddr_size_ = %d"), this->addr_size_));
00069 ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00070 #endif /* ACE_HAS_DUMP */
00071 }
|
|
|
|
|
|
Returns a hash value. This should be overwritten by a subclass that can produce a better hash value. Reimplemented in ACE_INET_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_INET_Addr, ACE_SPIPE_Addr, and ACE_UNIX_Addr. Definition at line 47 of file Addr.cpp. Referenced by ACE_TLI_Acceptor::accept().
00048 {
00049 }
|
|
|
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_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_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_DEV_Addr, ACE_FILE_Addr, ACE_INET_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