MIB_IPNETROW

The MIB_IPNETROW structure contains information for an Address Resolution Protocol (ARP) table entry.

typedef struct _MIB_IPNETROW {
  DWORD   dwIndex;        // adapter index
  DWORD   dwPhysAddrLen;  // physical address length 
  BYTE    bPhysAddr[MAXLEN_PHYSADDR];  // physical address
  DWORD   dwAddr;         // IP address
  DWORD   dwType;         // ARP entry type
} MIB_IPNETROW, *PMIB_IPNETROW;

Members

dwIndex
Specifies the index of the adapter.
dwPhysAddrLen
Specifies the length of the physical address.
bPhysAddr[MAXLEN_PHYSADDR]
Specifies the physical address.
dwAddr
Specifies the IP address.
dwType
Specifies the type of ARP entry. This type can be one of the following values.
Value Meaning
4 Static
3 Dynamic
2 Invalid
1 Other

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

CreateIpNetEntry, DeleteIpNetEntry, MIB_IPNETTABLE, SetIpNetEntry