Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_openthread.h"
#include "openthread/ip6.h"
#include "openthread/instance.h"
esp_openthread_netif_glue_update(esp_openthread_mainloop_context_t *);
esp_openthread_netif_glue_process(otInstance *, const esp_openthread_mainloop_context_t *);
is_openthread_internal_mesh_local_addr(const otIp6Address *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/private_include/esp_openthread_netif_glue_priv.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2021-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_openthread.h" #include "openthread/ip6.h" #include "openthread/instance.h" #ifdef __cplusplus extern "C" { #endif /** * @brief This function updates the netif fds and timeouts to the main loop. * * @param[inout] mainloop The main loop context. * *//* ... */ void esp_openthread_netif_glue_update(esp_openthread_mainloop_context_t *mainloop); /** * @brief This function performs the netif process. * * @param[in] instance The OpenThread instance. * @param[in] mainloop The main loop context. * * @return * - ESP_OK on success * - ESP_FAIL on OpenThread failure * - ESP_ERR_NO_MEM on memory allocation failure * *//* ... */ esp_err_t esp_openthread_netif_glue_process(otInstance *instance, const esp_openthread_mainloop_context_t *mainloop); /** * @brief This function judges the target address is openthread mesh local or not. * * @param[in] address The address. * * @return * - True if the address is openthread mesh local, otherwise false * *//* ... */ bool is_openthread_internal_mesh_local_addr(const otIp6Address *address); #ifdef __cplusplus }{...} #endif
Details