IP_ADAPTER_BINDING_INFO

The IP_ADAPTER_BINDING_INFO structure contains IP-specific information for a particular network adapter.

typedef struct IP_ADAPTER_BINDING_INFO {
  DWORD               NumAddresses;
  DWORD               RemoteAddress;
  IP_LOCAL_BINDING    Address[1];
}IP_ADAPTER_BINDING_INFO, *PIP_ADAPTER_BINDING_INFO;

Members

NumAddresses
The number of IP addresses associated with this adapter.
RemoteAddress
This member is for WAN interfaces. It contains the address of the machine at the other end of a dial-up link.
Address
Pointer to an array of IP_LOCAL_BINDING structures. The array will contain a structure for each of the IP addresses associated with this adapter.

Remarks

Since an adapter may have more than one IP address, the IP_ADAPTER_BINDING_INFO structure maintains an array of IP_LOCAL_BINDING structures.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Header: Declared in Routprot.h.

See Also

Router Management Reference, Router Management Structures, IP_LOCAL_BINDING, IPX_ADAPTER_BINDING_INFO