Location:
x509gn.h
Link against: x509.lib
class CX509IPAddress : public CBase;
A single IP address.
CBase
- Base class for all classes to be instantiated on the heap
CX509IPAddress
- A single IP address
Defined in CX509IPAddress
:
Address()
, IsWithinSubtree()
, NewL()
, NewLC()
, ~CX509IPAddress()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CX509IPAddress *NewL(const TDesC8 &aBinaryData);
Creates a single IP address object from the specified buffer containing the binary coded representation.
|
|
static IMPORT_C CX509IPAddress *NewLC(const TDesC8 &aBinaryData);
Creates a single IP address object from the specified buffer containing the binary coded representation, and puts a pointer to it onto the cleanup stack.
|
|
IMPORT_C ~CX509IPAddress();
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C TBool IsWithinSubtree(const CX509IPSubnetMask &aName) const;
Tests whether the IP address lies within the specified subnet address.
|
|
IMPORT_C TPtrC8 Address() const;
Gets the IP address.
|