2006-05-08 08:50:50 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/* common.c
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
|
2009-06-17 15:24:52 +05:30
|
|
|
#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
|
2009-06-17 16:54:03 +05:30
|
|
|
unsigned dhcp_verbose;
|
2009-06-17 15:24:52 +05:30
|
|
|
#endif
|
|
|
|
|
2007-08-13 02:28:27 +05:30
|
|
|
const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = {
|
|
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff
|
|
|
|
};
|