TCPIP_ARP_EntryRemove Function

C

TCPIP_ARP_RESULT TCPIP_ARP_EntryRemove(
    TCPIP_NET_HANDLE hNet, 
    IPV4_ADDR* ipAdd
);

Description

This function removes an existent mapping from the selected interface cache.

Preconditions

The ARP module should have been initialized.

Parameters

ParametersDescription
hNetInterface to use.
ipAddIP Address to remove entries for.

Returns

TCPIP_ARP_RESULT

  • On Success - ARP_RES_OK.

  • On Failure - ARP_RES_NO_ENTRY (if no such mapping exists) ARP_RES_NO_INTERFACE (if no such interface exists).

Remarks

None.