embkernel
 All Classes Functions Variables Typedefs Groups Pages
NetNbns.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_NBNS_HPP_
7 #define NET_NBNS_HPP_
8 
9 #include "NetDefs.hpp"
10 
11 class NetNbns {
12  friend class NetUdp;
13 public:
14 
15 private:
16  static void processFrame(NetDefs::FRAME& frame, NetDefs::NBNS_HEADER& header, int len);
17 
18 };
19 
20 #endif /* NET_NBNS_HPP_ */