wpa_supplicant: Store driver's RRM capabilities
Store the RRM capability flags reported by the underlying driver. Signed-off-by: Assaf Krauss <assaf.krauss@intel.com>
This commit is contained in:
parent
58162adf06
commit
f936b73c4f
2 changed files with 2 additions and 0 deletions
|
@ -3801,6 +3801,7 @@ static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
|
|||
wpa_s->drv_flags = capa.flags;
|
||||
wpa_s->drv_enc = capa.enc;
|
||||
wpa_s->drv_smps_modes = capa.smps_modes;
|
||||
wpa_s->drv_rrm_flags = capa.rrm_flags;
|
||||
wpa_s->probe_resp_offloads = capa.probe_resp_offloads;
|
||||
wpa_s->max_scan_ssids = capa.max_scan_ssids;
|
||||
wpa_s->max_sched_scan_ssids = capa.max_sched_scan_ssids;
|
||||
|
|
|
@ -578,6 +578,7 @@ struct wpa_supplicant {
|
|||
u64 drv_flags;
|
||||
unsigned int drv_enc;
|
||||
unsigned int drv_smps_modes;
|
||||
unsigned int drv_rrm_flags;
|
||||
|
||||
/*
|
||||
* A bitmap of supported protocols for probe response offload. See
|
||||
|
|
Loading…
Reference in a new issue