1 /*
2  * SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ESP_HOSTAP_H
8 #define ESP_HOSTAP_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #include "sdkconfig.h"
15 #include "zephyr_compat.h"
16 
17 #ifdef CONFIG_ESP_WIFI_SOFTAP_SUPPORT
18 void *hostap_init(void);
19 bool hostap_deinit(void *data);
20 u16 esp_send_assoc_resp(struct hostapd_data *data, const u8 *addr,
21                     u16 status_code, bool omit_rsnxe, int subtype);
22 #endif
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* ESP_HOSTAP_H */
29