2022-01-04 07:50:02 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-07-23 09:16:15 -04:00
|
|
|
|
2022-01-04 07:50:02 -05:00
|
|
|
#include <features.h>
|
2020-07-23 09:16:15 -04:00
|
|
|
#include "esp_netif_lwip_internal.h"
|
|
|
|
|
|
|
|
esp_err_t esp_netif_get_ip_info(esp_netif_t *esp_netif, esp_netif_ip_info_t *ip_info)
|
|
|
|
{
|
|
|
|
return ESP_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_netif_dhcpc_get_status(esp_netif_t *esp_netif, esp_netif_dhcp_status_t *status)
|
|
|
|
{
|
|
|
|
return ESP_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *esp_netif_get_ifkey(esp_netif_t *esp_netif)
|
|
|
|
{
|
|
|
|
return esp_netif->if_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
esp_err_t esp_netif_get_ip6_linklocal(esp_netif_t *esp_netif, esp_ip6_addr_t *if_ip6)
|
2020-11-10 02:40:01 -05:00
|
|
|
{
|
2020-07-23 09:16:15 -04:00
|
|
|
return ESP_ERR_NOT_SUPPORTED;
|
2020-11-10 02:40:01 -05:00
|
|
|
}
|