DHCP_OPTION_DATA structure (dhcpsapi.h)

The DHCP_OPTION_DATA structure defines a data container for one or more data elements associated with a DHCP option.

Syntax

typedef struct _DHCP_OPTION_DATA {
  DWORD                      NumElements;
  LPDHCP_OPTION_DATA_ELEMENT Elements;
} DHCP_OPTION_DATA, *LPDHCP_OPTION_DATA;

Members

NumElements

Specifies the number of option data elements listed in Elements.

Elements

Pointer to a list of DHCP_OPTION_DATA_ELEMENT structures that contain the data elements associated with this particular option element.

Requirements

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

See also

DHCP_OPTION_DATA_ELEMENT