Share via


IP_ADAPTER_DNS_SUFFIX (Compact 2013)

3/26/2014

This structure stores a DNS suffix in a linked list of DNS suffixes for a particular adapter.

Syntax

typedef struct _IP_ADAPTER_DNS_SUFFIX {
  struct _IP_ADAPTER_DNS_SUFFIX* Next;
  WCHAR String[MAX_DNS_SUFFIX_STRING_LENGTH];
} IP_ADAPTER_DNS_SUFFIX,
  *PIP_ADAPTER_DNS_SUFFIX;

Members

  • Next
    A pointer to the next DNS suffix in the linked list.
  • String
    The DNS suffix for this DNS suffix entry.

Remarks

The IP_ADAPTER_ADDRESSES structure is retrieved by the GetAdaptersAddresses function. The FirstDnsSuffix member of the IP_ADAPTER_ADDRESSES structure is a pointer to a linked list of IP_ADAPTER_DNS_SUFFIX structures.

See Also

Reference

IP Helper Structures
GetAdaptersAddresses
IP_ADAPTER_ADDRESSES