DHCP_SCAN_LIST structure (dhcpsapi.h)

The DHCP_SCAN_LIST structure defines a list of all desynchronized client lease IP address on a DHCPv4 server that must be fixed.

Syntax

typedef struct _DHCP_SCAN_LIST {
  DWORD          NumScanItems;
  DHCP_SCAN_ITEM *ScanItems;
} DHCP_SCAN_LIST, *LPDHCP_SCAN_LIST;

Members

NumScanItems

Specifies the number of DHCP_SCAN_ITEM structures listed in ScanItems.

ScanItems

Pointer to a list of DHCP_SCAN_ITEM structures that contain the specific client IP addresses whose leases differed between the in-memory cache of client leases and the subnet client lease database during a DhcpScanDatabase operation.

Requirements

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

See also

DHCP_SCAN_ITEM

DhcpScanDatabase