mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 23:29:25 +00:00
Another fix for bug #6683 (and a typo in changelog)
This commit is contained in:
parent
aa568727d1
commit
9f96f09652
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user