1 /* 2 * SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ESP_SCAN_I_H 8 #define ESP_SCAN_I_H 9 void esp_scan_init(struct wpa_supplicant *wpa_s); 10 void esp_scan_deinit(struct wpa_supplicant *wpa_s); 11 int esp_handle_beacon_probe(u8 type, u8 *frame, size_t len, u8 *sender, 12 int8_t rssi, u8 channel, u64 current_tsf); 13 14 void esp_supplicant_handle_scan_done_evt(void); 15 #endif 16