mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-27 04:09:59 +08:00
feat(ipv6): Enable ipv6 autoconfig function in lwip port level
This commit is contained in:
@ -299,6 +299,10 @@ static void low_level_init(struct netif* netif)
|
||||
netif->flags |= NETIF_FLAG_IGMP;
|
||||
#endif
|
||||
/* Do whatever else is needed to initialize interface. */
|
||||
|
||||
#if LWIP_IPV6_AUTOCONFIG
|
||||
netif->ip6_autoconfig_enabled = 1;
|
||||
#endif /* LWIP_IPV6_AUTOCONFIG */
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user