ADDRESS_LIST_DESCRIPTOR structure (traffic.h)

The ADDRESS_LIST_DESCRIPTOR structure provides network address descriptor information for a given interface. For point-to-point media such as WAN connections, the list is a pair of addresses, the first of which is always the local or source address, the second of which is the remote or destination address. Note that the members of ADDRESS_LIST_DESCRIPTOR are defined in Ntddndis.h.

Syntax

typedef struct _ADDRESS_LIST_DESCRIPTOR {
  ULONG                MediaType;
  NETWORK_ADDRESS_LIST AddressList;
} ADDRESS_LIST_DESCRIPTOR, *PADDRESS_LIST_DESCRIPTOR;

Members

MediaType

Media type of the interface.

AddressList

Pointer to the address list for the interface. The NETWORK_ADDRESS_LIST structure is defined in Ntddndis.h.

Requirements

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

See also

FLOWSPEC