Skip to main content

This struct is defined as follows:

struct _address
{
  u_int8_t family;              /* AF_INET or AF_INET6 */
  union _address_inaddr {
    struct in_addr inaddr;      /* IPv4 address */
    struct in6_addr inaddr6;    /* IPv6 address */
  } inaddr;
};

To use this struct, include the file dns_ds.h.

See Also

Was this page helpful?