mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-06-27 12:16:18 +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;
|
netif->flags |= NETIF_FLAG_IGMP;
|
||||||
#endif
|
#endif
|
||||||
/* Do whatever else is needed to initialize interface. */
|
/* 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