Another fix for bug #6683 (and a typo in changelog)

This commit is contained in:
goldsimon 2008-12-19 18:16:50 +00:00
parent aa568727d1
commit 9f96f09652
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ HISTORY
++ New features:
2008-12-03 Simon Goldschmidt (base on patch from Luca Cereoli)
2008-12-03 Simon Goldschmidt (base on patch from Luca Ceresoli)
* autoip.c: checked in (slightly modified) patch #6683: Customizable AUTOIP
"seed" address. This should reduce AUTOIP conflicts if
LWIP_AUTOIP_CREATE_SEED_ADDR is overridden.

View File

@ -79,9 +79,9 @@
/* 169.254.0.0 */
#define AUTOIP_NET 0xA9FE0000
/* 169.254.1.0 */
#define AUTOIP_RANGE_START AUTOIP_NET | 0x0100
#define AUTOIP_RANGE_START (AUTOIP_NET | 0x0100)
/* 169.254.254.255 */
#define AUTOIP_RANGE_END AUTOIP_NET | 0xFEFF
#define AUTOIP_RANGE_END (AUTOIP_NET | 0xFEFF)
/** Pseudo random macro based on netif informations.