FlushIpNetTable2 - NtDoc

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

NETIOAPI_API FlushIpNetTable2(
  _In_ ADDRESS_FAMILY Family,
  _In_ NET_IFINDEX    InterfaceIndex
);
View the official Windows hardware development documentation

NtDoc

No description available.

Windows hardware development documentation (flushipnettable2)

FlushIpNetTable2 function

The FlushIpNetTable2 function flushes the IP neighbor table on a local computer.

Parameters

Return value

FlushIpNetTable2 returns STATUS_SUCCESS if the function succeeds.

If the function fails, FlushIpNetTable2 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 the Family parameter was not specified as AF_INET, AF_INET6, or AF_UNSPEC.
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 FlushIpNetTable2 function flushes or deletes the neighbor IP addresses on a local computer. Your driver can use the Family parameter to limit neighbor IP addresses to delete to a particular IP address family. If neighbor IP addresses for both IPv4 and IPv6 should be deleted, your driver should set the Family parameter to AF_UNSPEC. Your driver can use the InterfaceIndex parameter to limit neighbor IP addresses to delete to a particular interface. If neighbor IP addresses for all interfaces should be deleted, your driver should set the InterfaceIndex parameter to zero.

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

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

DeleteIpNetEntry2

GetIpNetEntry2

GetIpNetTable2

MIB_IPNET_ROW2

MIB_IPNET_TABLE2

ResolveIpNetEntry2

SetIpNetEntry2