diff options
author | vamsi krishna <vamsin@qti.qualcomm.com> | 2017-08-31 08:45:18 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-10-01 15:47:02 (GMT) |
commit | e37cea308e221c7b7eeffb76f7e24cf68ab37927 (patch) | |
tree | d0546b4d15f5fc506555bf1c472a3c885af63b13 /wpa_supplicant | |
parent | 0ba13e86132a1c6dd4bc304178f7328e1b73cf52 (diff) | |
download | hostap-e37cea308e221c7b7eeffb76f7e24cf68ab37927.zip hostap-e37cea308e221c7b7eeffb76f7e24cf68ab37927.tar.gz hostap-e37cea308e221c7b7eeffb76f7e24cf68ab37927.tar.bz2 |
OCE: Update default scan IEs when OCE is enabled/disabled
Update the default scan IEs when OCE is enabled/disabled to the
driver/firmware, so that the correct IEs will be sent out by the
driver/firmware in Probe Request frames.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant')
-rw-r--r-- | wpa_supplicant/ctrl_iface.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 6710ca3..40c0c45 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -690,6 +690,7 @@ static int wpa_supplicant_ctrl_iface_set(struct wpa_supplicant *wpa_s, } else { wpa_s->enable_oce = 0; } + wpa_supplicant_set_default_scan_ies(wpa_s); #endif /* CONFIG_MBO */ } else if (os_strcasecmp(cmd, "lci") == 0) { ret = wpas_ctrl_iface_set_lci(wpa_s, value); |