algin
ae3cac8a7d
Adds sitara_depot/free_rtos Original one is on server_gorbunov/SmartForce4.0/sitara_depot
25 lines
393 B
C++
25 lines
393 B
C++
/*
|
|
* eth_arp_iface.hpp
|
|
*
|
|
* Created on: 14 ìàð. 2023 ã.
|
|
* Author: sychev
|
|
*/
|
|
|
|
#ifndef FREE_RTOS_ETHERNET_IP_ETH_ARP_IFACE_HPP_
|
|
#define FREE_RTOS_ETHERNET_IP_ETH_ARP_IFACE_HPP_
|
|
|
|
namespace free_rtos {
|
|
|
|
class EthArpIface {
|
|
public:
|
|
virtual bool getMacAddr(uint32_t ip, uint64_t& mac) = 0;
|
|
|
|
virtual ~EthArpIface() {};
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* FREE_RTOS_ETHERNET_IP_ETH_ARP_IFACE_HPP_ */
|