feat(esp_netif): Added code to expose api to add and remove ipv6 address

This commit is contained in:
Abhik Roy
2024-01-09 18:00:47 +08:00
parent 22f2ecc400
commit 325a8d7a6e
5 changed files with 41 additions and 31 deletions

View File

@@ -455,7 +455,7 @@ esp_err_t esp_netif_leave_ip6_multicast_group(esp_netif_t *esp_netif, const esp_
return ESP_ERR_NOT_SUPPORTED;
}
esp_err_t esp_netif_add_ip6_address(esp_netif_t *esp_netif, const ip_event_add_ip6_t *addr)
esp_err_t esp_netif_add_ip6_address(esp_netif_t *esp_netif, const esp_ip6_addr_t addr, bool preferred)
{
return ESP_ERR_NOT_SUPPORTED;
}