DNS_A_DATA structure (windns.h)

The DNS_A_DATA structure represents a DNS address (A) record as specified in section 3.4.1 of RFC 1035.

Syntax

typedef struct {
  IP4_ADDRESS IpAddress;
} DNS_A_DATA, *PDNS_A_DATA;

Members

IpAddress

An IP4_ADDRESS data type that contains an IPv4 address.

Remarks

The DNS_A_DATA structure is used in conjunction with the DNS_RECORD structure to programmatically manage DNS entries.

Requirements

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

See also

DNS_RECORD