#include <SSLIOP_Endpoint.h>
Inheritance diagram for TAO_SSLIOP_Endpoint:
Public Methods | |||
TAO_SSLIOP_Endpoint (const SSLIOP::SSL *ssl_component, TAO_IIOP_Endpoint *iiop_endp) | |||
Constructor. More... | |||
~TAO_SSLIOP_Endpoint (void) | |||
Destructor. More... | |||
TAO_Endpoint Methods | |||
virtual TAO_Endpoint * | next (void) | ||
virtual int | addr_to_string (char *buffer, size_t length) | ||
virtual void | reset_hint (void) | ||
CORBA::Boolean | is_equivalent (const TAO_Endpoint *other_endpoint) | ||
Return true if this endpoint is equivalent to
| |||
virtual TAO_Endpoint * | duplicate (void) | ||
Return a copy of the corresponding endpoints by allocating memory. More... | |||
virtual CORBA::ULong | hash (void) | ||
Return a hash value for this object. More... | |||
SSLIOP_Endpoint-specific Methods | |||
const SSLIOP::SSL & | ssl_component (void) const | ||
Return SSL component corresponding to this endpoint. More... | |||
TAO_IIOP_Endpoint * | iiop_endpoint (void) const | ||
Accessor to our IIOP counterpart. More... | |||
void | iiop_endpoint (TAO_IIOP_Endpoint *endpoint, int destroy) | ||
Mutator to our IIOP counterpart. More... | |||
const ACE_INET_Addr & | object_addr (void) const | ||
Return the SSLIOP-specific ACE_INET_Addr. More... | |||
void | qop (Security::QOP qop) | ||
Set the Quality-of-Protection settings for this endpoint. More... | |||
Security::QOP | qop (void) const | ||
Get the Quality-of-Protection settings for this endpoint. More... | |||
void | trust (const Security::EstablishTrust &trust) | ||
Set the establishment of trust settings for this endpoint. More... | |||
Security::EstablishTrust | trust (void) const | ||
Get the establishment of trust settings for this endpoint. More... | |||
void | credentials (TAO_SSLIOP_Credentials_ptr creds) | ||
Set the credentials for this endpoint. More... | |||
TAO_SSLIOP_Credentials * | credentials (void) const | ||
Get the credentials for this endpoint. More... | |||
Private Attributes | |||
SSLIOP::SSL | ssl_component_ | ||
Cache the SSL tagged component in a decoded format. Notice that we do not need to marshal this object! More... | |||
ACE_INET_Addr | object_addr_ | ||
Cached instance of ACE_INET_Addr for use in making invocations, etc. More... | |||
TAO_SSLIOP_Endpoint * | next_ | ||
IIOP Endpoints can be stringed into a list. Return the next endpoint in the list, if any. More... | |||
TAO_IIOP_Endpoint * | iiop_endpoint_ | ||
IIOP counterpart. More... | |||
int | destroy_iiop_endpoint_ | ||
Flag that determines whether or not the iiop_endpoint_ member is deallocated with delete(). More... | |||
Security::QOP | qop_ | ||
Quailty-of-Protection settings for this endpoint object. More... | |||
Security::EstablishTrust | trust_ | ||
Establishment of trust settings for this endpoint object. More... | |||
TAO_SSLIOP_Credentials_var | credentials_ | ||
SSLIOP-specific credentials for this endpoint object. More... | |||
Friends | |||
class | TAO_SSLIOP_Profile |
|
Constructor.
|
|
Destructor.
|
|
Reimplemented from TAO_Endpoint. |
|
Get the credentials for this endpoint.
|
|
Set the credentials for this endpoint.
|
|
Return a copy of the corresponding endpoints by allocating memory.
Reimplemented from TAO_Endpoint. |
|
Return a hash value for this object.
Reimplemented from TAO_Endpoint. |
|
Mutator to our IIOP counterpart.
|
|
Accessor to our IIOP counterpart.
|
|
Return true if this endpoint is equivalent to
Two endpoints are equivalent iff their iiop counterparts are equivalent, and, if both have non-zero ssl ports, their ssl ports are the same. Reimplemented from TAO_Endpoint. |
|
Reimplemented from TAO_Endpoint. |
|
Return the SSLIOP-specific ACE_INET_Addr.
|
|
Get the Quality-of-Protection settings for this endpoint.
|
|
Set the Quality-of-Protection settings for this endpoint.
|
|
Reimplemented from TAO_Endpoint. |
|
Return SSL component corresponding to this endpoint.
|
|
Get the establishment of trust settings for this endpoint.
|
|
Set the establishment of trust settings for this endpoint.
|
|
|
|
SSLIOP-specific credentials for this endpoint object.
|
|
Flag that determines whether or not the iiop_endpoint_ member is deallocated with delete().
|
|
IIOP counterpart. Since SSLIOP is an 'extension' of IIOP, each SSLIOP_Endpoint contains SSL-specific information plus a pointer to the IIOP_Endpoint containing the IIOP portion of our address. |
|
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.
|
|
Quailty-of-Protection settings for this endpoint object.
|
|
Cache the SSL tagged component in a decoded format. Notice that we do not need to marshal this object!
|
|
Establishment of trust settings for this endpoint object.
|