The OSPF_AREA_RANGE_PARAM structure MAY<149> be used to contain the OSPF area range parameters. This structure is used by the following methods:
RRouterInterfaceTransportGetGlobalInfo (section 3.1.4.11)
typedef struct _OSPF_AREA_RANGE_PARAM {
DWORD type;
DWORD create;
DWORD enable;
DWORD areaId;
DWORD rangeNet;
DWORD rangeMask;
} OSPF_AREA_RANGE_PARAM, *POSPF_AREA_RANGE_PARAM;
type: This MUST be set to OSPF_AREA_RANGE_PARAM_TYPE.
create: Set to 1 if the configuration needs to be created or set to 2 if it needs to be deleted.
enable: Set to 1 if the configuration needs to be enabled or set to 2 if it needs to be deleted.
areaId: Set to 0 if it is a border. Otherwise, set it to any nonzero value.
rangeNet: The IP address of the subnet.
rangeMask: The mask of the IP address subnet.