|
|
This function is used to retrieve the MAC Address for a given IP address. This information will be received via ARP after sending an ARP request over the network. If we have a destination IP address, but not it's MAC address, we will send an ARP request, and wait for an ARP reply. As soon as we receive the reply, the requested MAC address can be retrieve via this function.
Note: This function is available only when STACK_CLIENT_MODE is defined. - Parameters:
-
| IPAddr | IPAddress to be resolved. |
| MACAddr | Buffer to hold corresponding MAC Address. |
- Returns:
- TRUE if given IP Address has been resolved.
FALSE otherwise.
- Examples:
-
ex_tcp_client.c, ex_udp_client.c, and ex_udp_client2.c.
|