sitara_depot/components/free_rtos/ethernet_ip/eth_arp_iface.hpp

25 lines
397 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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_ */