mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-12-12 16:21:17 +08:00
Merge branch 'bugfix/fix_ipv6_igmp_error' into 'release/v3.3'
fix(lwip): fix IGMP join wrong address See merge request sdk/ESP8266_RTOS_SDK!1366
This commit is contained in:
@@ -306,6 +306,10 @@ mld6_joingroup(const ip6_addr_t *srcaddr, const ip6_addr_t *groupaddr)
|
||||
err_t err = ERR_VAL; /* no matching interface */
|
||||
struct netif *netif;
|
||||
|
||||
#if ESP_LWIP
|
||||
LWIP_ERROR("mld6_joingroup: attempt to join non-multicast address", ip6_addr_ismulticast(groupaddr), return ERR_VAL;);
|
||||
#endif
|
||||
|
||||
/* loop through netif's */
|
||||
netif = netif_list;
|
||||
while (netif != NULL) {
|
||||
|
||||
Reference in New Issue
Block a user