IP_ADAPTER_BINDING_INFO structure (routprot.h)

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

Syntax

typedef struct IP_ADAPTER_BINDING_INFO {
  ULONG            AddressCount;
  DWORD            RemoteAddress;
  ULONG            Mtu;
  ULONGLONG        Speed;
  IP_LOCAL_BINDING Address[0];
} IP_ADAPTER_BINDING_INFO, *PIP_ADAPTER_BINDING_INFO;

Members

AddressCount

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.

Mtu

Reserved for future use.

Speed

Reserved for future use.

Address[0]

Pointer to an array of IP_LOCAL_BINDING structures. The array contains a structure for each of the IP addresses associated with this adapter.

Remarks

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

Requirements

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

See also

IP_LOCAL_BINDING

Router Management Reference

Router Management Structures