| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842 |
- // Copyright 2019 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #ifndef _ESP_NETIF_H_
- #define _ESP_NETIF_H_
- #include <stdint.h>
- #include "sdkconfig.h"
- #include "esp_wifi_types.h"
- #include "esp_netif_ip_addr.h"
- #include "esp_netif_types.h"
- #include "esp_netif_defaults.h"
- #if CONFIG_ETH_ENABLED
- #include "esp_eth_netif_glue.h"
- #endif
- //
- // Note: tcpip_adapter legacy API has to be included by default to provide full compatibility
- // for applications that used tcpip_adapter API without explicit inclusion of tcpip_adapter.h
- //
- #if CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER
- #define _ESP_NETIF_SUPPRESS_LEGACY_WARNING_
- #include "tcpip_adapter.h"
- #undef _ESP_NETIF_SUPPRESS_LEGACY_WARNING_
- #endif // CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @defgroup ESP_NETIF_INIT_API ESP-NETIF Initialization API
- * @brief Initialization and deinitialization of underlying TCP/IP stack and esp-netif instances
- *
- */
- /** @addtogroup ESP_NETIF_INIT_API
- * @{
- */
- /**
- * @brief Initialize the underlying TCP/IP stack
- *
- * @return
- * - ESP_OK on success
- * - ESP_FAIL if initializing failed
- * @note This function should be called exactly once from application code, when the application starts up.
- */
- esp_err_t esp_netif_init(void);
- /**
- * @brief Deinitialize the esp-netif component (and the underlying TCP/IP stack)
- *
- * Note: Deinitialization is not supported yet
- *
- * @return
- * - ESP_ERR_INVALID_STATE if esp_netif not initialized
- * - ESP_ERR_NOT_SUPPORTED otherwise
- */
- esp_err_t esp_netif_deinit(void);
- /**
- * @brief Creates an instance of new esp-netif object based on provided config
- *
- * @param[in] esp_netif_config pointer esp-netif configuration
- *
- * @return
- * - pointer to esp-netif object on success
- * - NULL otherwise
- */
- esp_netif_t *esp_netif_new(const esp_netif_config_t *esp_netif_config);
- /**
- * @brief Destroys the esp_netif object
- *
- * @param[in] esp_netif pointer to the object to be deleted
- */
- void esp_netif_destroy(esp_netif_t *esp_netif);
- /**
- * @brief Configures driver related options of esp_netif object
- *
- * @param[inout] esp_netif pointer to the object to be configured
- * @param[in] driver_config pointer esp-netif io driver related configuration
- * @return
- * - ESP_OK on success
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS if invalid parameters provided
- *
- */
- esp_err_t esp_netif_set_driver_config(esp_netif_t *esp_netif,
- const esp_netif_driver_ifconfig_t *driver_config);
- /**
- * @brief Attaches esp_netif instance to the io driver handle
- *
- * Calling this function enables connecting specific esp_netif object
- * with already initialized io driver to update esp_netif object with driver
- * specific configuration (i.e. calls post_attach callback, which typically
- * sets io driver callbacks to esp_netif instance and starts the driver)
- *
- * @param[inout] esp_netif pointer to esp_netif object to be attached
- * @param[in] driver_handle pointer to the driver handle
- * @return
- * - ESP_OK on success
- * - ESP_ERR_ESP_NETIF_DRIVER_ATTACH_FAILED if driver's pot_attach callback failed
- */
- esp_err_t esp_netif_attach(esp_netif_t *esp_netif, esp_netif_iodriver_handle driver_handle);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_DATA_IO_API ESP-NETIF Input Output API
- * @brief Input and Output functions to pass data packets from communication media (IO driver)
- * to TCP/IP stack.
- *
- * These functions are usually not directly called from user code, but installed, or registered
- * as callbacks in either IO driver on one hand or TCP/IP stack on the other. More specifically
- * esp_netif_receive is typically called from io driver on reception callback to input the packets
- * to TCP/IP stack. Similarly esp_netif_transmit is called from the TCP/IP stack whenever
- * a packet ought to output to the communication media.
- *
- * @note These IO functions are registerd (installed) automatically for default interfaces
- * (interfaces with the keys such as WIFI_STA_DEF, WIFI_AP_DEF, ETH_DEF). Custom interface
- * has to register these IO functions when creating interface using @ref esp_netif_new
- *
- */
- /** @addtogroup ESP_NETIF_DATA_IO_API
- * @{
- */
- /**
- * @brief Passes the raw packets from communication media to the appropriate TCP/IP stack
- *
- * This function is called from the configured (peripheral) driver layer.
- * The data are then forwarded as frames to the TCP/IP stack.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] buffer Received data
- * @param[in] len Length of the data frame
- * @param[in] eb Pointer to internal buffer (used in Wi-Fi driver)
- *
- * @return
- * - ESP_OK
- */
- esp_err_t esp_netif_receive(esp_netif_t *esp_netif, void *buffer, size_t len, void *eb);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_LIFECYCLE ESP-NETIF Lifecycle control
- * @brief These APIS define basic building blocks to control network interface lifecycle, i.e.
- * start, stop, set_up or set_down. These functions can be directly used as event handlers
- * registered to follow the events from communication media.
- */
- /** @addtogroup ESP_NETIF_LIFECYCLE
- * @{
- */
- /**
- * @brief Default building block for network interface action upon IO driver start event
- * Creates network interface, if AUTOUP enabled turns the interface on,
- * if DHCPS enabled starts dhcp server
- *
- * @note This API can be directly used as event handler
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param base
- * @param event_id
- * @param data
- */
- void esp_netif_action_start(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);
- /**
- * @brief Default building block for network interface action upon IO driver stop event
- *
- * @note This API can be directly used as event handler
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param base
- * @param event_id
- * @param data
- */
- void esp_netif_action_stop(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);
- /**
- * @brief Default building block for network interface action upon IO driver connected event
- *
- * @note This API can be directly used as event handler
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param base
- * @param event_id
- * @param data
- */
- void esp_netif_action_connected(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);
- /**
- * @brief Default building block for network interface action upon IO driver disconnected event
- *
- * @note This API can be directly used as event handler
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param base
- * @param event_id
- * @param data
- */
- void esp_netif_action_disconnected(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);
- /**
- * @brief Default building block for network interface action upon network got IP event
- *
- * @note This API can be directly used as event handler
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param base
- * @param event_id
- * @param data
- */
- void esp_netif_action_got_ip(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_GET_SET ESP-NETIF Runtime configuration
- * @brief Getters and setters for various TCP/IP related parameters
- */
- /** @addtogroup ESP_NETIF_GET_SET
- * @{
- */
- /**
- * @brief Set the mac address for the interface instance
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] mac Desired mac address for the related network interface
- * @return
- * - ESP_OK - success
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY - interface status error
- * - ESP_ERR_NOT_SUPPORTED - mac not supported on this interface
- */
- esp_err_t esp_netif_set_mac(esp_netif_t *esp_netif, uint8_t mac[]);
- /**
- * @brief Get the mac address for the interface instance
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] mac Resultant mac address for the related network interface
- * @return
- * - ESP_OK - success
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY - interface status error
- * - ESP_ERR_NOT_SUPPORTED - mac not supported on this interface
- */
- esp_err_t esp_netif_get_mac(esp_netif_t *esp_netif, uint8_t mac[]);
- /**
- * @brief Set the hostname of an interface
- *
- * The configured hostname overrides the default configuration value CONFIG_LWIP_LOCAL_HOSTNAME.
- * Please note that when the hostname is altered after interface started/connected the changes
- * would only be reflected once the interface restarts/reconnects
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] hostname New hostname for the interface. Maximum length 32 bytes.
- *
- * @return
- * - ESP_OK - success
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY - interface status error
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS - parameter error
- */
- esp_err_t esp_netif_set_hostname(esp_netif_t *esp_netif, const char *hostname);
- /**
- * @brief Get interface hostname.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] hostname Returns a pointer to the hostname. May be NULL if no hostname is set. If set non-NULL, pointer remains valid (and string may change if the hostname changes).
- *
- * @return
- * - ESP_OK - success
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY - interface status error
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS - parameter error
- */
- esp_err_t esp_netif_get_hostname(esp_netif_t *esp_netif, const char **hostname);
- /**
- * @brief Test if supplied interface is up or down
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - true - Interface is up
- * - false - Interface is down
- */
- bool esp_netif_is_netif_up(esp_netif_t *esp_netif);
- /**
- * @brief Get interface's IP address information
- *
- * If the interface is up, IP information is read directly from the TCP/IP stack.
- * If the interface is down, IP information is read from a copy kept in the ESP-NETIF instance
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] ip_info If successful, IP information will be returned in this argument.
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- */
- esp_err_t esp_netif_get_ip_info(esp_netif_t *esp_netif, esp_netif_ip_info_t *ip_info);
- /**
- * @brief Get interface's old IP information
- *
- * Returns an "old" IP address previously stored for the interface when the valid IP changed.
- *
- * If the IP lost timer has expired (meaning the interface was down for longer than the configured interval)
- * then the old IP information will be zero.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] ip_info If successful, IP information will be returned in this argument.
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- */
- esp_err_t esp_netif_get_old_ip_info(esp_netif_t *esp_netif, esp_netif_ip_info_t *ip_info);
- /**
- * @brief Set interface's IP address information
- *
- * This function is mainly used to set a static IP on an interface.
- *
- * If the interface is up, the new IP information is set directly in the TCP/IP stack.
- *
- * The copy of IP information kept in the ESP-NETIF instance is also updated (this
- * copy is returned if the IP is queried while the interface is still down.)
- *
- * @note DHCP client/server must be stopped (if enabled for this interface) before setting new IP information.
- *
- * @note Calling this interface for may generate a SYSTEM_EVENT_STA_GOT_IP or SYSTEM_EVENT_ETH_GOT_IP event.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] ip_info IP information to set on the specified interface
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_NOT_STOPPED If DHCP server or client is still running
- */
- esp_err_t esp_netif_set_ip_info(esp_netif_t *esp_netif, const esp_netif_ip_info_t *ip_info);
- /**
- * @brief Set interface old IP information
- *
- * This function is called from the DHCP client (if enabled), before a new IP is set.
- * It is also called from the default handlers for the SYSTEM_EVENT_STA_CONNECTED and SYSTEM_EVENT_ETH_CONNECTED events.
- *
- * Calling this function stores the previously configured IP, which can be used to determine if the IP changes in the future.
- *
- * If the interface is disconnected or down for too long, the "IP lost timer" will expire (after the configured interval) and set the old IP information to zero.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] ip_info Store the old IP information for the specified interface
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- */
- esp_err_t esp_netif_set_old_ip_info(esp_netif_t *esp_netif, const esp_netif_ip_info_t *ip_info);
- /**
- * @brief Get net interface index from network stack implementation
- *
- * @note This index could be used in `setsockopt()` to bind socket with multicast interface
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * implementation specific index of interface represented with supplied esp_netif
- */
- int esp_netif_get_netif_impl_index(esp_netif_t *esp_netif);
- /**
- * @brief Get net interface name from network stack implementation
- *
- * @note This name could be used in `setsockopt()` to bind socket with appropriate interface
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] name Interface name as specified in underlying TCP/IP stack. Note that the
- * actual name will be copied to the specified buffer, which must be allocated to hold
- * maximum interface name size (6 characters for lwIP)
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- */
- esp_err_t esp_netif_get_netif_impl_name(esp_netif_t *esp_netif, char* name);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_NET_DHCP ESP-NETIF DHCP Settings
- * @brief Network stack related interface to DHCP client and server
- */
- /** @addtogroup ESP_NETIF_NET_DHCP
- * @{
- */
- /**
- * @brief Set or Get DHCP server option
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] opt_op ESP_NETIF_OP_SET to set an option, ESP_NETIF_OP_GET to get an option.
- * @param[in] opt_id Option index to get or set, must be one of the supported enum values.
- * @param[inout] opt_val Pointer to the option parameter.
- * @param[in] opt_len Length of the option parameter.
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STOPPED
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STARTED
- */
- esp_err_t
- esp_netif_dhcps_option(esp_netif_t *esp_netif, esp_netif_dhcp_option_mode_t opt_op, esp_netif_dhcp_option_id_t opt_id,
- void *opt_val, uint32_t opt_len);
- /**
- * @brief Set or Get DHCP client option
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] opt_op ESP_NETIF_OP_SET to set an option, ESP_NETIF_OP_GET to get an option.
- * @param[in] opt_id Option index to get or set, must be one of the supported enum values.
- * @param[inout] opt_val Pointer to the option parameter.
- * @param[in] opt_len Length of the option parameter.
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STOPPED
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STARTED
- */
- esp_err_t
- esp_netif_dhcpc_option(esp_netif_t *esp_netif, esp_netif_dhcp_option_mode_t opt_op, esp_netif_dhcp_option_id_t opt_id,
- void *opt_val, uint32_t opt_len);
- /**
- * @brief Start DHCP client (only if enabled in interface object)
- *
- * @note The default event handlers for the SYSTEM_EVENT_STA_CONNECTED and SYSTEM_EVENT_ETH_CONNECTED events call this function.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STARTED
- * - ESP_ERR_ESP_NETIF_DHCPC_START_FAILED
- */
- esp_err_t esp_netif_dhcpc_start(esp_netif_t *esp_netif);
- /**
- * @brief Stop DHCP client (only if enabled in interface object)
- *
- * @note Calling action_netif_stop() will also stop the DHCP Client if it is running.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STOPPED
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY
- */
- esp_err_t esp_netif_dhcpc_stop(esp_netif_t *esp_netif);
- /**
- * @brief Get DHCP client status
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] status If successful, the status of DHCP client will be returned in this argument.
- *
- * @return
- * - ESP_OK
- */
- esp_err_t esp_netif_dhcpc_get_status(esp_netif_t *esp_netif, esp_netif_dhcp_status_t *status);
- /**
- * @brief Get DHCP Server status
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] status If successful, the status of the DHCP server will be returned in this argument.
- *
- * @return
- * - ESP_OK
- */
- esp_err_t esp_netif_dhcps_get_status(esp_netif_t *esp_netif, esp_netif_dhcp_status_t *status);
- /**
- * @brief Start DHCP server (only if enabled in interface object)
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STARTED
- */
- esp_err_t esp_netif_dhcps_start(esp_netif_t *esp_netif);
- /**
- * @brief Stop DHCP server (only if enabled in interface object)
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- * - ESP_ERR_ESP_NETIF_DHCP_ALREADY_STOPPED
- * - ESP_ERR_ESP_NETIF_IF_NOT_READY
- */
- esp_err_t esp_netif_dhcps_stop(esp_netif_t *esp_netif);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_NET_DNS ESP-NETIF DNS Settings
- * @brief Network stack related interface to NDS
- */
- /** @addtogroup ESP_NETIF_NET_DNS
- * @{
- */
- /**
- * @brief Set DNS Server information
- *
- * This function behaves differently if DHCP server or client is enabled
- *
- * If DHCP client is enabled, main and backup DNS servers will be updated automatically
- * from the DHCP lease if the relevant DHCP options are set. Fallback DNS Server is never updated from the DHCP lease
- * and is designed to be set via this API.
- * If DHCP client is disabled, all DNS server types can be set via this API only.
- *
- * If DHCP server is enabled, the Main DNS Server setting is used by the DHCP server to provide a DNS Server option
- * to DHCP clients (Wi-Fi stations).
- * - The default Main DNS server is typically the IP of the Wi-Fi AP interface itself.
- * - This function can override it by setting server type ESP_NETIF_DNS_MAIN.
- * - Other DNS Server types are not supported for the Wi-Fi AP interface.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] type Type of DNS Server to set: ESP_NETIF_DNS_MAIN, ESP_NETIF_DNS_BACKUP, ESP_NETIF_DNS_FALLBACK
- * @param[in] dns DNS Server address to set
- *
- * @return
- * - ESP_OK on success
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS invalid params
- */
- esp_err_t esp_netif_set_dns_info(esp_netif_t *esp_netif, esp_netif_dns_type_t type, esp_netif_dns_info_t *dns);
- /**
- * @brief Get DNS Server information
- *
- * Return the currently configured DNS Server address for the specified interface and Server type.
- *
- * This may be result of a previous call to esp_netif_set_dns_info(). If the interface's DHCP client is enabled,
- * the Main or Backup DNS Server may be set by the current DHCP lease.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[in] type Type of DNS Server to get: ESP_NETIF_DNS_MAIN, ESP_NETIF_DNS_BACKUP, ESP_NETIF_DNS_FALLBACK
- * @param[out] dns DNS Server result is written here on success
- *
- * @return
- * - ESP_OK on success
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS invalid params
- */
- esp_err_t esp_netif_get_dns_info(esp_netif_t *esp_netif, esp_netif_dns_type_t type, esp_netif_dns_info_t *dns);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_NET_IP ESP-NETIF IP address related interface
- * @brief Network stack related interface to IP
- */
- /** @addtogroup ESP_NETIF_NET_IP
- * @{
- */
- /**
- * @brief Create interface link-local IPv6 address
- *
- * Cause the TCP/IP stack to create a link-local IPv6 address for the specified interface.
- *
- * This function also registers a callback for the specified interface, so that if the link-local address becomes
- * verified as the preferred address then a SYSTEM_EVENT_GOT_IP6 event will be sent.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return
- * - ESP_OK
- * - ESP_ERR_ESP_NETIF_INVALID_PARAMS
- */
- esp_err_t esp_netif_create_ip6_linklocal(esp_netif_t *esp_netif);
- /**
- * @brief Get interface link-local IPv6 address
- *
- * If the specified interface is up and a preferred link-local IPv6 address
- * has been created for the interface, return a copy of it.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] if_ip6 IPv6 information will be returned in this argument if successful.
- *
- * @return
- * - ESP_OK
- * - ESP_FAIL If interface is down, does not have a link-local IPv6 address,
- * or the link-local IPv6 address is not a preferred address.
- */
- esp_err_t esp_netif_get_ip6_linklocal(esp_netif_t *esp_netif, esp_ip6_addr_t *if_ip6);
- /**
- * @brief Get interface global IPv6 address
- *
- * If the specified interface is up and a preferred global IPv6 address
- * has been created for the interface, return a copy of it.
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] if_ip6 IPv6 information will be returned in this argument if successful.
- *
- * @return
- * - ESP_OK
- * - ESP_FAIL If interface is down, does not have a global IPv6 address,
- * or the global IPv6 address is not a preferred address.
- */
- esp_err_t esp_netif_get_ip6_global(esp_netif_t *esp_netif, esp_ip6_addr_t *if_ip6);
- /**
- * @brief Get all IPv6 addresses of the specified interface
- *
- * @param[in] esp_netif Handle to esp-netif instance
- * @param[out] if_ip6 Array of IPv6 addresses will be copied to the argument
- *
- * @return
- * number of returned IPv6 addresses
- */
- int esp_netif_get_all_ip6(esp_netif_t *esp_netif, esp_ip6_addr_t if_ip6[]);
- /**
- * @brief Sets IPv4 address to the specified octets
- *
- * @param[out] addr IP address to be set
- * @param a the first octet (127 for IP 127.0.0.1)
- * @param b
- * @param c
- * @param d
- */
- void esp_netif_set_ip4_addr(esp_ip4_addr_t *addr, uint8_t a, uint8_t b, uint8_t c, uint8_t d);
- /**
- * @brief Converts numeric IP address into decimal dotted ASCII representation.
- *
- * @param addr ip address in network order to convert
- * @param buf target buffer where the string is stored
- * @param buflen length of buf
- * @return either pointer to buf which now holds the ASCII
- * representation of addr or NULL if buf was too small
- */
- char *esp_ip4addr_ntoa(const esp_ip4_addr_t *addr, char *buf, int buflen);
- /**
- * @brief Ascii internet address interpretation routine
- * The value returned is in network order.
- *
- * @param addr IP address in ascii representation (e.g. "127.0.0.1")
- * @return ip address in network order
- */
- uint32_t esp_ip4addr_aton(const char *addr);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_CONVERT ESP-NETIF Conversion utilities
- * @brief ESP-NETIF conversion utilities to related keys, flags, implementation handle
- */
- /** @addtogroup ESP_NETIF_CONVERT
- * @{
- */
- /**
- * @brief Gets media driver handle for this esp-netif instance
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return opaque pointer of related IO driver
- */
- esp_netif_iodriver_handle esp_netif_get_io_driver(esp_netif_t *esp_netif);
- /**
- * @brief Searches over a list of created objects to find an instance with supplied if key
- *
- * @param if_key Textual description of network interface
- *
- * @return Handle to esp-netif instance
- */
- esp_netif_t *esp_netif_get_handle_from_ifkey(const char *if_key);
- /**
- * @brief Returns configured flags for this interface
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return Configuration flags
- */
- esp_netif_flags_t esp_netif_get_flags(esp_netif_t *esp_netif);
- /**
- * @brief Returns configured interface key for this esp-netif instance
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return Textual description of related interface
- */
- const char *esp_netif_get_ifkey(esp_netif_t *esp_netif);
- /**
- * @brief Returns configured interface type for this esp-netif instance
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return Enumerated type of this interface, such as station, AP, ethernet
- */
- const char *esp_netif_get_desc(esp_netif_t *esp_netif);
- /**
- * @brief Returns configured routing priority number
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return Integer representing the instance's route-prio, or -1 if invalid paramters
- */
- int esp_netif_get_route_prio(esp_netif_t *esp_netif);
- /**
- * @brief Returns configured event for this esp-netif instance and supplied event type
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @param event_type (either get or lost IP)
- *
- * @return specific event id which is configured to be raised if the interface lost or acquired IP address
- * -1 if supplied event_type is not known
- */
- int32_t esp_netif_get_event_id(esp_netif_t *esp_netif, esp_netif_ip_event_type_t event_type);
- /**
- * @}
- */
- /**
- * @defgroup ESP_NETIF_LIST ESP-NETIF List of interfaces
- * @brief APIs to enumerate all registered interfaces
- */
- /** @addtogroup ESP_NETIF_LIST
- * @{
- */
- /**
- * @brief Iterates over list of interfaces. Returns first netif if NULL given as parameter
- *
- * @param[in] esp_netif Handle to esp-netif instance
- *
- * @return First netif from the list if supplied parameter is NULL, next one otherwise
- */
- esp_netif_t *esp_netif_next(esp_netif_t *esp_netif);
- /**
- * @brief Returns number of registered esp_netif objects
- *
- * @return Number of esp_netifs
- */
- size_t esp_netif_get_nr_of_ifs(void);
- /**
- * @brief increase the reference counter of net stack buffer
- *
- * @param[in] netstack_buf the net stack buffer
- *
- */
- void esp_netif_netstack_buf_ref(void *netstack_buf);
- /**
- * @brief free the netstack buffer
- *
- * @param[in] netstack_buf the net stack buffer
- *
- */
- void esp_netif_netstack_buf_free(void *netstack_buf);
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* _ESP_NETIF_H_ */
|