Platform SDK: Quality of Service

ADDRESS_LIST_DESCRIPTOR

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.

typedef struct _ADDRESS_LIST_DESCRIPTOR {

  NDIS_MEDIUM            MediaType;
  NETWORK_ADDRESS_LIST   AddressList;

} ADDRESS_LIST_DESCRIPTOR, *PADDRESS_LIST_DESCRIPTOR;

Members

MediaType
Pointer to the media type of the interface. NDIS_MEDIUM is a defined type from definitions provided in Ntddndis.h.
AddressList
Pointer to the address list for the interface. NETWORK_ADDRESS_LIST is defined in Ntddndis.h.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Windows 95/98: Unsupported.
  Header: Declared in Traffic.h.