2.2.10 FW_IPV6_ADDRESS_RANGE
This structure represents a range of IPv6 addresses within the IPv6 address space.
-
typedef struct _tag_FW_IPV6_ADDRESS_RANGE { unsigned char Begin[16]; unsigned char End[16]; } FW_IPV6_ADDRESS_RANGE, *PFW_IPV6_ADDRESS_RANGE;
Begin: A 16-octet array containing the first IPv6 address of the range in the IPv6 address range defined by this structure.
End: A 16-octet array containing the last IPv6 address of the range in the IPv6 address range defined by this structure.
Valid FW_IPV6_ADDRESS_RANGE structures MUST have a Begin value less than or equal to the End value. Structures with Begin equal to End represent a single IPv6 address. Begin and End MUST NOT contain either an unspecified or a loopback address.
Begin and End are in network order.