DHCP_HOST_INFO_V6 structure (dhcpsapi.h)

The DHCP_HOST_INFO_V6 structure contains network information about a DHCPv6 server (host), such as its IPv6 address and name.

Syntax

typedef struct _DHCP_HOST_INFO_V6 {
  DHCP_IPV6_ADDRESS IpAddress;
  LPWSTR            NetBiosName;
  LPWSTR            HostName;
} DHCP_HOST_INFO_V6, *LPDHCP_HOST_INFO_V6;

Members

IpAddress

DHCP_IPV6_ADDRESS structure that contains the IPv6 address of the DHCPv6 server.

NetBiosName

Pointer to a Unicode string that contains the NetBIOS name of the DHCPv6 server.

HostName

Pointer to a Unicode string that contains the network name of the DHCPv6 server.

Remarks

When this structure is populated by the DHCP Server, the HostName and NetBiosName members may be set to NULL.

Requirements

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

See also

DHCP_IPV6_ADDRESS