GetIpNetTable2 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// netioapi.h

NETIOAPI_API GetIpNetTable2(
  _In_  ADDRESS_FAMILY    Family,
  _Out_ PMIB_IPNET_TABLE2 *Table
);
View the official Windows hardware development documentation

NtDoc

No description available.

Windows hardware development documentation (getipnettable2)

GetIpNetTable2 function

The GetIpNetTable2 function retrieves the IP neighbor table on a local computer.

Parameters

Return value

GetIpNetTable2 returns STATUS_SUCCESS if the function succeeds.

If the function fails, GetIpNetTable2 returns one of the following error codes:

Return code Description
STATUS_INVALID_PARAMETER An invalid parameter was passed to the function. This error is returned if a NULL pointer is passed in the Table parameter or the Family parameter was not specified as AF_INET, AF_INET6, or AF_UNSPEC.
STATUS_NOT_ENOUGH_MEMORY Insufficient memory resources are available to complete the operation.
STATUS_NOT_FOUND No neighbor IP address entries, as specified in the Family parameter, were found.
STATUS_NOT_SUPPORTED The request is not supported. This error is returned if no IPv4 stack is located on the local computer and AF_INET was specified in the Family parameter, or if no IPv6 stack is located on the local computer and AF_INET6 was specified in the Family parameter. This error is also returned on versions of Windows where this function is not supported.
Other Use the FormatMessage function to obtain the message string for the returned error.

Remarks

The GetIpNetTable2 function enumerates the neighbor IP addresses on a local computer and returns this information in a MIB_IPNET_TABLE2 structure.

GetIpNetTable2 returns the neighbor IP address entries in a MIB_IPNET_TABLE2 structure in the buffer that the Table parameter points to. The MIB_IPNET_TABLE2 structure contains a neighbor IP address entry count and an array of MIB_IPNET_ROW2 structures for each neighbor IP address entry. When these returned structures are no longer required, your driver should free the memory by calling FreeMibTable.

Your driver must initialize the Family parameter to either AF_INET, AF_INET6, or AF_UNSPEC.

Note that the returned MIB_IPNET_TABLE2 structure that the Table parameter points to might contain padding for alignment between the NumEntries member and the first MIB_IPNET_ROW2 array entry in the Table member of the MIB_IPNET_TABLE2 structure. Padding for alignment might also be present between the MIB_IPNET_ROW2 array entries. Any access to a MIB_IPNET_ROW2 array entry should assume padding might exist.

Requirements

Target platform Universal
Version Available in Windows Vista and later versions of the Windows operating systems.
Header Netioapi.h (include Netioapi.h)
Library Netio.lib
IRQL < DISPATCH_LEVEL

See also

CreateIpNetEntry2

FlushIpNetTable2

FreeMibTable

GetIpNetEntry2

MIB_IPNET_ROW2

MIB_IPNET_TABLE2

ResolveIpNetEntry2

SetIpNetEntry2