DHCPV6_STATELESS_SCOPE_STATS structure (dhcpsapi.h)

The DHCPV6_STATELESS_SCOPE_STATS structure defines the address counters for a specific IPv6 stateless subnet. The number of stateless IPv6 clients added and removed from the stateless client inventory are stored in this structure.

Syntax

typedef struct {
  DHCP_IPV6_ADDRESS SubnetAddress;
  ULONGLONG         NumStatelessClientsAdded;
  ULONGLONG         NumStatelessClientsRemoved;
} DHCPV6_STATELESS_SCOPE_STATS, *PDHCPV6_STATELESS_SCOPE_STATS, *LPDHCPV6_STATELESS_SCOPE_STATS;

Members

SubnetAddress

DHCP_IPV6_ADDRESS structure that specifies the IPv6 prefix of the DHCPv6 stateless scope.

NumStatelessClientsAdded

Integer that specifies the number of IPv6 stateless clients that have been added to the DHCPv6 stateless client inventory for the prefix in SubnetAddress.

NumStatelessClientsRemoved

Integer that specifies the number of IPv6 stateless clients that have been removed from the DHCPv6 stateless client inventory for the prefix in SubnetAddress.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2012 [desktop apps only]
Header dhcpsapi.h

See also

DHCPV6_STATELESS_STATS

DhcpV6GetStatelessStatistics