The DHCPV6_STATELESS_STATS structure represents an array of DHCPV6_STATELESS_SCOPE_STATS (section 2.2.1.2.113) structures. This structure is used with the R_DhcpV6GetStatelessStatistics (section 3.2.4.119) method. The server uses this array for statistical analysis.
typedef struct _DHCPV6_STATELESS_STATS {
DWORD NumScopes;
[size_is(NumScopes)] LPDHCPV6_STATELESS_SCOPE_STATS ScopeStats;
} DHCPV6_STATELESS_STATS, *PDHCPV6_STATELESS_STATS, *LPDHCPV6_STATELESS_STATS;
NumScopes: The number of elements in the ScopeStats member.
ScopeStats: A pointer to an array of DHCPV6_STATELESS_SCOPE_STATS (section 2.2.1.2.113) structures, each one representing an IPv6 stateless prefix serviced by the current DHCPv6 server.