2022-11-08 16:31:52 +05:30
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
|
*/
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <net/if.h>
|
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
|
#include "esp_err.h"
|
|
|
|
|
|
2023-04-03 20:31:51 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-11-08 16:31:52 +05:30
|
|
|
esp_err_t esp_netif_init(void);
|
2023-04-03 20:31:51 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|