MIB_IPNETTABLE

The MIB_IPNETTABLE contains a table of Address Resolution Protocol (ARP) entries.

typedef struct _MIB_IPNETTABLE {
  DWORD           dwNumEntries;    // number of entries in table 
  MIB_IPNETROW    table[ANY_SIZE]; // array of ARP entries 
} MIB_IPNETTABLE, *PMIB_IPNETTABLE;

Members

dwNumEntries
Specifies the number of ARP entries in the table.
table[ANY_SIZE]
Pointer to a table of ARP entries implemented as an array of MIB_IPNETROW structures.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 SP4 or later.
  Windows 95/98: Requires Windows 98.
  Header: Declared in Iprtrmib.h.

See Also

GetIpNetTable, MIB_IPNETROW