#include <driver.h>
Classes | |
struct | wpa_driver_scan_filter |
Public Attributes | |
const u8 * | extra_ies |
size_t | extra_ies_len |
struct wpa_driver_scan_params::wpa_driver_scan_filter * | filter_ssids |
int * | freqs |
size_t | num_filter_ssids |
size_t | num_ssids |
struct wpa_driver_scan_ssid | ssids [WPAS_MAX_SCAN_SSIDS] |
struct wpa_driver_scan_params - Scan parameters Data for struct wpa_driver_ops::scan2().
Definition at line 214 of file driver.h.
filter_ssids - Filter for reporting SSIDs
This optional parameter can be used to request the driver wrapper to filter scan results to include only the specified SSIDs. NULL indicates that no filtering is to be done. This can be used to reduce memory needs for scan results in environments that have large number of APs with different SSIDs.
The driver wrapper is allowed to take this allocated buffer into its own use by setting the pointer to NULL. In that case, the driver wrapper is responsible for freeing the buffer with os_free() once it is not needed anymore.
struct wpa_driver_scan_ssid wpa_driver_scan_params::ssids[WPAS_MAX_SCAN_SSIDS] |