IPV6_ULA_FLAGS Enumeration

C

typedef enum {
IPV6_ULA_FLAG_NTPV4 = 0x01,
IPV6_ULA_FLAG_GENERATE_ONLY = 0x02,
IPV6_ULA_FLAG_SKIP_DAD = 0x04
} IPV6_ULA_FLAGS;

Description

Enumeration: IPV6_ULA_FLAGS.

This enumeration provides a list of possible flags for the Unique Local Address (ULA) generation.

Members

MembersDescription
IPV6_ULA_FLAG_NTPV4 = 0x01Use an IPv4 NTP server access in Unique Local Address generation. Default is an IPv6 server.
IPV6_ULA_FLAG_GENERATE_ONLY = 0x02Generate an address only, don't add it to the interface addresses.
IPV6_ULA_FLAG_SKIP_DAD = 0x04When adding the address to the interface, skip the Duplicate Address Detection.

Remarks

None.