ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
Outline
#include "esp_netif.h"
#include "lwip/netif.h"
#include "esp_netif_ppp.h"
#define ESP_NETIF_OPTIONAL_RETURN_CODE
esp_netif_recv_ret_t
#define ESP_NETIF_OPTIONAL_RETURN_CODE
input_fn_t
esp_netif_netstack_lwip_vanilla_config
init_fn
input_fn
esp_netif_netstack_lwip_ppp_config
input_fn
ppp_events
esp_netif_netstack_config
<anonymous union>
lwip
lwip_ppp
ethernetif_init(struct netif *);
ethernetif_input(void *, void *, size_t, void *);
wlanif_init_ap(struct netif *);
wlanif_init_sta(struct netif *);
wlanif_init_nan(struct netif *);
wlanif_input(void *, void *, size_t, void *);
Files
loading...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/esp_netif/include/lwip/esp_netif_net_stack.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ... */
#pragma
once
#include
"
esp_netif.h"
#include
"
lwip
/
netif.h"
#include
"
esp_netif_ppp.h"
#ifdef
__cplusplus
extern
"C"
{
#endif
#ifdef
CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS
typedef
esp_err_t
esp_netif_recv_ret_t
;
#define
ESP_NETIF_OPTIONAL_RETURN_CODE
(
expr
)
expr
/* ... */
#else
typedef
void
esp_netif_recv_ret_t
;
#define
ESP_NETIF_OPTIONAL_RETURN_CODE
(
expr
)
/* ... */
#endif
// CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS
typedef
err_t
(
*
init_fn_t
)
(
struct
netif
*
)
;
typedef
esp_netif_recv_ret_t
(
*
input_fn_t
)
(
void
*
netif
,
void
*
buffer
,
size_t
len
,
void
*
eb
)
;
struct
esp_netif_netstack_lwip_vanilla_config
{
init_fn_t
init_fn
;
input_fn_t
input_fn
;
}
{ ... }
;
struct
esp_netif_netstack_lwip_ppp_config
{
input_fn_t
input_fn
;
esp_netif_ppp_config_t
ppp_events
;
}
{ ... }
;
// LWIP netif specific network stack configuration
struct
esp_netif_netstack_config
{
union
{
struct
esp_netif_netstack_lwip_vanilla_config
lwip
;
struct
esp_netif_netstack_lwip_ppp_config
lwip_ppp
;
}
{ ... }
;
}
{ ... }
;
/**
* @brief LWIP's network stack init function for Ethernet
* @param netif LWIP's network interface handle
* @return ERR_OK on success
*/
/* ... */
err_t
ethernetif_init
(
struct
netif
*
netif
)
;
/**
* @brief LWIP's network stack input packet function for Ethernet
* @param h LWIP's network interface handle
* @param buffer Input buffer pointer
* @param len Input buffer size
* @param l2_buff External buffer pointer (to be passed to custom input-buffer free)
*/
/* ... */
esp_netif_recv_ret_t
ethernetif_input
(
void
*
h
,
void
*
buffer
,
size_t
len
,
void
*
l2_buff
)
;
/**
* @brief LWIP's network stack init function for WiFi (AP)
* @param netif LWIP's network interface handle
* @return ERR_OK on success
*/
/* ... */
err_t
wlanif_init_ap
(
struct
netif
*
netif
)
;
/**
* @brief LWIP's network stack init function for WiFi (Station)
* @param netif LWIP's network interface handle
* @return ERR_OK on success
*/
/* ... */
err_t
wlanif_init_sta
(
struct
netif
*
netif
)
;
/**
* @brief LWIP's network stack init function for WiFi Aware interface (NAN)
* @param netif LWIP's network interface handle
* @return ERR_OK on success
*/
/* ... */
err_t
wlanif_init_nan
(
struct
netif
*
netif
)
;
/**
* @brief LWIP's network stack input packet function for WiFi (both STA/AP)
* @param h LWIP's network interface handle
* @param buffer Input buffer pointer
* @param len Input buffer size
* @param l2_buff External buffer pointer (to be passed to custom input-buffer free)
*/
/* ... */
esp_netif_recv_ret_t
wlanif_input
(
void
*
h
,
void
*
buffer
,
size_t
len
,
void
*
l2_buff
)
;
#ifdef
__cplusplus
}
{...}
#endif
Details
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
wlanif_input()
ethernetif_init()
ethernetif_input()
wlanif_init_ap()
wlanif_init_sta()
wlanif_init_nan()
netif
err_t
esp_netif_netstack_config
ethernetif_init()::netif
esp_netif_netstack_config::
::lwip
ESP_NETIF_OPTIONAL_RETURN_CODE
esp_netif_recv_ret_t
esp_netif_netstack_lwip_vanilla_config::init_fn
esp_netif_netstack_lwip_vanilla_config::input_fn
ethernetif_input()::buffer
wlanif_input()::l2_buff
wlanif_init_ap()::netif
wlanif_init_sta()::netif
wlanif_init_nan()::netif
wlanif_input()::buffer
wlanif_input()::len
input_fn_t
ethernetif_input()::h
ethernetif_input()::len
wlanif_input()::h
init_fn_t
esp_netif_netstack_lwip_vanilla_config
esp_netif_netstack_lwip_ppp_config
ethernetif_input()::l2_buff
esp_netif_netstack_lwip_ppp_config::input_fn
esp_netif_netstack_lwip_ppp_config::ppp_events
esp_netif_netstack_config::
::lwip_ppp
esp_netif_ppp_config_t