feat(netif): Add NETIF_FLAG_MLD6 flag for eth netif

Closes https://github.com/espressif/esp-idf/issues/8602
This commit is contained in:
yuanjm
2022-05-19 19:12:56 +08:00
committed by BOT
parent 7e71c0cff2
commit 667a7c6cd0

View File

@@ -91,6 +91,12 @@ static void ethernet_low_level_init(struct netif *netif)
netif->flags |= NETIF_FLAG_IGMP;
#endif
#endif
#if ESP_IPV6
#if LWIP_IPV6 && LWIP_IPV6_MLD
netif->flags |= NETIF_FLAG_MLD6;
#endif
#endif
}
/**