2.2.8 FW_IPV4_ADDRESS_RANGE

This structure represents a range of IPv4 addresses within the IPv4 address space.

 typedef struct _tag_FW_IPV4_ADDRESS_RANGE {
   unsigned long dwBegin;
   unsigned long dwEnd;
 } FW_IPV4_ADDRESS_RANGE,
  *PFW_IPV4_ADDRESS_RANGE;

dwBegin: The first IPv4 address of the range in the IPv4 address space defined by this structure. The address is included in the range.

dwEnd: The last IPv4 address of the range in the IPv4 address space defined by this structure. The address is included in the range.

Valid FW_IPV4_ADDRESS_RANGE structures MUST have a dwBegin value less than or equal to the dwEnd value. Structures with dwBegin equal to dwEnd represent a single IPv4 address.