DhcpGetServerBindingInfoV6 function (dhcpsapi.h)

The DhcpGetServerBindingInfoV6 function retrieves an array of IPv6 interface binding information specific to the DHCPv6 server.

Syntax

DWORD DHCP_API_FUNCTION DhcpGetServerBindingInfoV6(
  [in]  DHCP_CONST WCHAR            *ServerIpAddress,
  [in]  ULONG                       Flags,
  [out] LPDHCPV6_BIND_ELEMENT_ARRAY *BindElementsInfo
);

Parameters

[in] ServerIpAddress

Pointer to a Unicode string that specifies the IP address or hostname of the DHCP server.

[in] Flags

This parameter is not used, and must be set to 0.

[out] BindElementsInfo

Pointer to the address of a DHCPV6_BIND_ELEMENT_ARRAY structure that contains the information about the IPv6 interface bindings for the DHCPv6 server.

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
ERROR_ACCESS_DENIED
This call was performed by a client who is not a member of the "DHCP Administrators" security group.
ERROR_DHCP_JET_ERROR
An error occurred while accessing the DHCP server's database.

Remarks

The caller of this function must free the memory pointed to by BindElementsInfo.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header dhcpsapi.h
Library Dhcpsapi.lib
DLL Dhcpsapi.dll

See also

DHCPV6_BIND_ELEMENT_ARRAY