Location:
x509gn.h
Link against: x509.lib
class CX509IPSubnetMask : public CBase;
An IP subnet mask.
Input data is parsed into an 8-bit base address and an 8-bit mask.
CBase
- Base class for all classes to be instantiated on the heap
CX509IPSubnetMask
- An IP subnet mask
Defined in CX509IPSubnetMask
:
BaseAddress()
, Mask()
, NewL()
, NewLC()
, ~CX509IPSubnetMask()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CX509IPSubnetMask *NewL(const TDesC8 &aBinaryData);
Creates an IP subnet mask object from the specified buffer containing the binary coded representation.
The data is parsed into an 8-bit base address and an 8-bit mask.
|
|
static IMPORT_C CX509IPSubnetMask *NewLC(const TDesC8 &aBinaryData);
Creates an IP subnet mask object from the specified buffer containing the binary coded representation, and puts a pointer to it onto the cleanup stack.
The data is parsed into an 8-bit base address and an 8-bit mask.
|
|
IMPORT_C ~CX509IPSubnetMask();
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C TPtrC8 BaseAddress() const;
Gets the base IP address.
|
IMPORT_C TPtrC8 Mask() const;
Gets the subnet mask.
|