#include <IIOP_Endpoint.h>
Inheritance diagram for TAO_IIOP_Endpoint:
Public Methods | |
TAO_IIOP_Endpoint (void) | |
Default constructor. | |
TAO_IIOP_Endpoint (const char *host, CORBA::UShort port, const ACE_INET_Addr &addr, CORBA::Short priority=TAO_INVALID_PRIORITY) | |
TAO_IIOP_Endpoint (const ACE_INET_Addr &addr, int use_dotted_decimal_addresses) | |
Constructor. | |
TAO_IIOP_Endpoint (const char *host, CORBA::UShort port, CORBA::Short priority) | |
Constructor. This constructor is used when decoding endpoints. | |
~TAO_IIOP_Endpoint (void) | |
Destructor. | |
virtual TAO_Endpoint * | next (void) |
Endpoints can be stringed in a list. | |
virtual int | addr_to_string (char *buffer, size_t length) |
Return a string representation for the address. | |
virtual TAO_Endpoint * | duplicate (void) |
Makes a copy of <this>. | |
virtual CORBA::Boolean | is_equivalent (const TAO_Endpoint *other_endpoint) |
virtual CORBA::ULong | hash (void) |
Return a hash value for this object. | |
const ACE_INET_Addr & | object_addr (void) const |
Return a reference to the <object_addr>. | |
const char * | host (void) const |
const char * | host (const char *h) |
CORBA::UShort | port (void) const |
Return the port number. | |
CORBA::UShort | port (CORBA::UShort p) |
Set the port number. | |
Private Methods | |
int | set (const ACE_INET_Addr &addr, int use_dotted_decimal_addresses) |
Helper method for setting INET_Addr. | |
void | object_addr_i (void) const |
Helper method for object_addr () call. | |
Private Attributes | |
CORBA::String_var | host_ |
String representing the host name. | |
CORBA::UShort | port_ |
TCP port number. | |
ACE_INET_Addr | object_addr_ |
bool | object_addr_set_ |
Flag to indicate if the address has been resolved and set. | |
TAO_IIOP_Endpoint * | next_ |
Friends | |
class | TAO_IIOP_Profile |
class | TAO_SSLIOP_Profile |
IIOP-specific implementation of PP Framework Endpoint interface.
|
Default constructor.
|
|
Constructor. This is the most efficient constructor since it does not require any address resolution processing. |
|
Constructor.
|
|
Constructor. This constructor is used when decoding endpoints.
|
|
Destructor.
|
|
Return a string representation for the address.
The purpose of this method is to provide a general interface to the underlying address object's
Implements TAO_Endpoint. |
|
Makes a copy of <this>.
Implements TAO_Endpoint. |
|
Return a hash value for this object.
Implements TAO_Endpoint. |
|
Copy the string <h> into <host_> and return the resulting pointer. This object maintains ownership of this string. |
|
Return a pointer to the host string. This object maintains ownership of this string. |
|
Return true if this endpoint is equivalent to <other_endpoint>. Two endpoints are equivalent iff their port and host are the same. Implements TAO_Endpoint. |
|
Endpoints can be stringed in a list.
Implements TAO_Endpoint. |
|
Return a reference to the <object_addr>.
|
|
Helper method for object_addr () call.
|
|
Set the port number.
|
|
Return the port number.
|
|
Helper method for setting INET_Addr.
|
|
|
|
|
|
String representing the host name.
|
|
IIOP Endpoints can be stringed into a list. Return the next endpoint in the list, if any. |
|
Cached instance of <ACE_INET_Addr> for use in making invocations, etc. |
|
Flag to indicate if the address has been resolved and set.
|
|
TCP port number.
|