ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
Outline
#define ESP_COMMON_I_H
#include "utils/includes.h"
wpa_funcs
g_wpa_supp;
esp_supplicant_common_init(struct wpa_funcs *);
esp_supplicant_common_deinit();
esp_supplicant_unset_all_appie();
esp_set_scan_ie();
esp_set_assoc_ie(uint8_t *, const u8 *, size_t, bool);
supplicant_sta_conn_handler(uint8_t *);
supplicant_sta_disconn_handler(uint8_t);
Files
loading (1/5)...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/wpa_supplicant/esp_supplicant/src/esp_common_i.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
/*
* SPDX-FileCopyrightText: 2020-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ... */
#ifndef
ESP_COMMON_I_H
#define
ESP_COMMON_I_H
#include
"
utils
/
includes.h"
struct
wpa_funcs
;
extern
struct
wpa_supplicant
g_wpa_supp
;
#if
defined
(
CONFIG_RRM
)
||
defined
(
CONFIG_WNM
)
struct
ieee_mgmt_frame
{
u8
sender
[
ETH_ALEN
]
;
u8
channel
;
int8_t
rssi
;
size_t
len
;
u8
payload
[
0
]
;
}
{...}
;
void
esp_get_tx_power
(
uint8_t
*
tx_power
)
;
#ifdef
CONFIG_MBO
bool
mbo_bss_profile_match
(
u8
*
bssid
)
;
#endif
/* ... */
#endif
/* defined(CONFIG_RRM) || defined(CONFIG_WNM) */
int
esp_supplicant_common_init
(
struct
wpa_funcs
*
wpa_cb
)
;
void
esp_supplicant_common_deinit
(
void
)
;
void
esp_supplicant_unset_all_appie
(
void
)
;
void
esp_set_scan_ie
(
void
)
;
void
esp_set_assoc_ie
(
uint8_t
*
bssid
,
const
u8
*
ies
,
size_t
ies_len
,
bool
add_mdie
)
;
void
supplicant_sta_conn_handler
(
uint8_t
*
bssid
)
;
void
supplicant_sta_disconn_handler
(
uint8_t
reason_code
)
;
/* ... */
#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.
esp_set_scan_ie()
esp_set_assoc_ie()
esp_supplicant_common_deinit()
esp_supplicant_common_init()
esp_supplicant_unset_all_appie()
supplicant_sta_conn_handler()
supplicant_sta_disconn_handler()
u8
wpa_supplicant
g_wpa_supp
wpa_funcs
esp_set_assoc_ie()::ies_len
esp_supplicant_common_init()::wpa_cb
esp_set_assoc_ie()::bssid
esp_set_assoc_ie()::ies
supplicant_sta_conn_handler()::bssid
supplicant_sta_disconn_handler()::reason_code
ESP_COMMON_I_H
esp_set_assoc_ie()::add_mdie