Select one of the symbols to view example projects that use it.
 
Outline
#define ESP_HOSTAP_H
#include "sdkconfig.h"
hostap_init();
hostap_deinit(void *);
esp_send_assoc_resp(struct hostapd_data *, const u8 *, u16, bool, int);
esp_send_sae_auth_reply(struct hostapd_data *, const u8 *, const u8 *, u16, u16, u16, const u8 *, size_t);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/esp_supplicant/src/esp_hostap.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef ESP_HOSTAP_H #define ESP_HOSTAP_H #ifdef __cplusplus extern "C" { #endif #include "sdkconfig.h" #ifdef CONFIG_ESP_WIFI_SOFTAP_SUPPORT void *hostap_init(void); bool hostap_deinit(void *data); u16 esp_send_assoc_resp(struct hostapd_data *data, const u8 *addr, u16 status_code, bool omit_rsnxe, int subtype); int esp_send_sae_auth_reply(struct hostapd_data *hapd, const u8 *dst, const u8 *bssid, u16 auth_alg, u16 auth_transaction, u16 resp, const u8 *ies, size_t ies_len);/* ... */ #endif #ifdef __cplusplus }{...} #endif /* ... */ #endif /* ESP_HOSTAP_H */
Details