Merge branch 'feature/add_mld6_flag_for_eth' into 'master'

feat(netif): Add NETIF_FLAG_MLD6 flag for eth netif

Closes IDFGH-6983

See merge request espressif/esp-idf!18173
This commit is contained in:
Yuan Jian Min 2022-05-26 15:40:09 +08:00
commit 62182e1767

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
}
/**