2021-04-07 03:04:51 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-08-13 04:37:56 -04:00
|
|
|
|
|
|
|
#ifndef ESP_HOSTAP_H
|
|
|
|
#define ESP_HOSTAP_H
|
|
|
|
|
2021-04-07 03:04:51 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
#ifdef CONFIG_ESP_WIFI_SOFTAP_SUPPORT
|
2018-08-13 04:37:56 -04:00
|
|
|
void *hostap_init(void);
|
|
|
|
bool hostap_deinit(void *data);
|
2023-02-27 23:25:05 -05:00
|
|
|
u16 esp_send_assoc_resp(struct hostapd_data *data, struct sta_info *sta,
|
|
|
|
const u8 *addr, u16 status_code, bool omit_rsnxe,
|
|
|
|
int subtype);
|
2021-04-07 03:04:51 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2018-08-13 04:37:56 -04:00
|
|
|
|
|
|
|
#endif /* ESP_HOSTAP_H */
|