31 lines
604 B
C++
31 lines
604 B
C++
/*
|
||
* eth_icmp.hpp
|
||
*
|
||
* Created on: 14 <20><><EFBFBD>. 2023 <20>.
|
||
* Author: sychev
|
||
*/
|
||
|
||
#ifndef FREE_RTOS_ETHERNET_IP_ETH_ICMP_HPP_
|
||
#define FREE_RTOS_ETHERNET_IP_ETH_ICMP_HPP_
|
||
|
||
#include "handler_store/handler.hpp"
|
||
|
||
#include <cstdint>
|
||
#include <cstddef>
|
||
|
||
namespace free_rtos {
|
||
|
||
class EthIcmp : public Handler {
|
||
public:
|
||
virtual int32_t Process(uint8_t * p_data, uint32_t len) override;
|
||
virtual uint32_t Sender(uint8_t * p_data, size_t scatter_segment) override;
|
||
|
||
uint32_t getStat() {return rx_cnt_;};
|
||
private:
|
||
uint32_t rx_cnt_ = 0;
|
||
};
|
||
|
||
}
|
||
|
||
#endif /* FREE_RTOS_ETHERNET_IP_ETH_ICMP_HPP_ */
|