mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-09-20 03:29:00 +08:00
Merge branch 'bugfix/auto_ip_config' into 'master'
bugfix/auto_ip_config: Adding config options for autoip. See merge request sdk/ESP8266_RTOS_SDK!596
This commit is contained in:
@ -941,7 +941,7 @@
|
|||||||
* Maximum number of AutoIP IP conflicts before rate limiting is enabled.
|
* Maximum number of AutoIP IP conflicts before rate limiting is enabled.
|
||||||
*/
|
*/
|
||||||
#ifndef LWIP_AUTOIP_MAX_CONFLICTS
|
#ifndef LWIP_AUTOIP_MAX_CONFLICTS
|
||||||
#define LWIP_AUTOIP_MAX_CONFLICTS 10
|
#define LWIP_AUTOIP_MAX_CONFLICTS CONFIG_LWIP_AUTOIP_MAX_CONFLICTS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -949,7 +949,7 @@
|
|||||||
* Rate limited request interval, in seconds.
|
* Rate limited request interval, in seconds.
|
||||||
*/
|
*/
|
||||||
#ifndef LWIP_AUTOIP_RATE_LIMIT_INTERVAL
|
#ifndef LWIP_AUTOIP_RATE_LIMIT_INTERVAL
|
||||||
#define LWIP_AUTOIP_RATE_LIMIT_INTERVAL 60
|
#define LWIP_AUTOIP_RATE_LIMIT_INTERVAL CONFIG_LWIP_AUTOIP_RATE_LIMIT_INTERVAL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user