embkernel
 All Classes Functions Variables Typedefs Groups Pages
NetDefs.cpp
1 //------------------------------------------------------------------------------
2 //This file is part of embKernel.
3 //See license.txt for the full license governing this code.
4 //------------------------------------------------------------------------------
5 
6 #include "NetDefs.hpp"
7 
8 const NetDefs::MAC_ADDR NetDefs::MAC_BROADCAST = {
9  {
10  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } };
11 
12 const NetDefs::IP_ADDR NetDefs::IP_BROADCAST = {
13  {
14  255, 255, 255, 255 } };
15 
16 const uint8_t NetDefs::DHCP_MAGIC_COOKIE[4] = {
17  99, 130, 83, 99 };