Share via


NL_ADDRESS_TYPE (Compact 2013)

3/26/2014

This enumeration type specifies the IP address type of the network layer.

Syntax

typedef enum {
  NlatUnspecified,
  NlatUnicast,
  NlatAnycast,
  NlatMulticast,
  NlatBroadcast,
  NlatInvalid
} NL_ADDRESS_TYPE, *PNL_ADDRESS_TYPE;

Values

  • NlatUnspecified
    The unspecified IP address. For example, for IPv4, this address is 0.0.0.0.
  • NlatUnicast
    Any IPv4 or IPv6 unicast address.
  • NlatAnycast
    An IPv6 anycast address.
  • NlatMulticast
    An IPv4 or IPv6 multicast address.
  • NlatBroadcast
    An IPv4 broadcast address.
  • NlatInvalid
    An invalid IP address.

See Also

Reference

NL Enumerations