2.2.1.2.59 DHCP_IP_RANGE_V6

The DHCP_IP_RANGE_V6 structure defines the IPv6 range for an IPv6 subnet. This is used in the DHCP_SUBNET_ELEMENT_DATA_V6 (section 2.2.1.2.60) structure.

 typedef struct _DHCP_IP_RANGE_V6 {
   DHCP_IPV6_ADDRESS StartAddress;
   DHCP_IPV6_ADDRESS EndAddress;
 } DHCP_IP_RANGE_V6,
  *LPDHCP_IP_RANGE_V6;

StartAddress: This is of type DHCP_IPV6_ADDRESS (section 2.2.1.2.28) structure, containing the first IPv6 address in the IPv6 range.

EndAddress: This is of type DHCP_IPV6_ADDRESS (section 2.2.1.2.28) structure, containing the last IPv6 address in the IPv6 range.