embkernel
 All Classes Functions Variables Typedefs Groups Pages
NetIcmp.hpp
1 //------------------------------------------------------------------------------
2 //This file is part of embKernel.
3 //See license.txt for the full license governing this code.
4 //------------------------------------------------------------------------------
5 
6 #ifndef NET_ICMP_HPP_
7 #define NET_ICMP_HPP_
8 
9 #include "NetDefs.hpp"
10 
11 class NetIcmp {
12  friend class NetIp;
13 private:
14  static void processFrame(NetDefs::FRAME& frame, NetDefs::ICMP_HEADER& header, int len);
15 };
16 
17 #endif /* NET_ICMP_HPP_ */