DhcpEnumSubnetElementsV6 function (dhcpsapi.h)
The DhcpEnumSubnetElementsV6 function returns an enumerated list of elements for a specific DHCP subnet.
Syntax
DWORD DHCP_API_FUNCTION DhcpEnumSubnetElementsV6(
[in] LPWSTR ServerIpAddress,
[in] DHCP_IPV6_ADDRESS SubnetAddress,
[in] DHCP_SUBNET_ELEMENT_TYPE_V6 EnumElementType,
[in, out] DHCP_RESUME_HANDLE *ResumeHandle,
[in] DWORD PreferredMaximum,
[out] LPDHCP_SUBNET_ELEMENT_INFO_ARRAY_V6 *EnumElementInfo,
[out] DWORD *ElementsRead,
[out] DWORD *ElementsTotal
);
Parameters
[in] ServerIpAddress
Pointer to a Unicode string that specifies the IP address or hostname of the DHCP server.
[in] SubnetAddress
DHCP_IPV6_ADDRESS value that specifies the subnet whose elements will be enumerated.
[in] EnumElementType
DHCP_SUBNET_ELEMENT_TYPE_V6 enumeration value that indicates the type of subnet element to enumerate.
[in, out] ResumeHandle
Pointer to a DHCP_RESUME_HANDLE value that identifies the enumeration operation. Initially, this value should be zero, with a successful call returning the handle value used for subsequent enumeration requests. For example, if PreferredMaximum is set to 1000 bytes, and 2000 bytes worth of subnet elements are stored on the server, the resume handle can be used after the first 1000 bytes are retrieved to obtain the next 1000 on a subsequent call, and so forth.
[in] PreferredMaximum
Specifies the preferred maximum number of bytes of subnet elements to return. If the number of remaining unenumerated options (in bytes) is less than this value, then that amount will be returned.
[out] EnumElementInfo
Pointer to a DHCP_SUBNET_ELEMENT_INFO_ARRAY_V6 structure containing an enumerated list of all elements available for the specified subnet. If no elements are available for enumeration, this value will be null.
[out] ElementsRead
Pointer to a DWORD value that specifies the number of subnet elements returned in EnumElementInfo.
[out] ElementsTotal
Pointer to a DWORD value that specifies the total number of elements for the specified subnet.
Return value
This function returns ERROR_SUCCESS upon a successful call. Otherwise, it returns one of the DHCP Server Management API Error Codes.
Return code | Description |
---|---|
|
The parameters were invalid. |
|
No more items to enumerate. |
|
Memory failure. |
|
More data is available to enumerate. |
Requirements
Requirement | Value |
---|---|
Minimum supported client | None supported |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Target Platform | Windows |
Header | dhcpsapi.h |
Library | Dhcpsapi.lib |
DLL | Dhcpsapi.dll |