nl80211: Add driver parameter force_bss_selection
authorMikael Kanstrup <mikael.kanstrup@sonymobile.com>
Tue, 20 Sep 2016 06:40:03 +0000 (08:40 +0200)
committerJouni Malinen <j@w1.fi>
Fri, 23 Sep 2016 14:36:55 +0000 (17:36 +0300)
Add driver parameter command to force capability flag
WPA_DRIVER_FLAGS_BSS_SELECTION even if driver states otherwise. This is
mainly for testing purposes.

Signed-off-by: Mikael Kanstrup <mikael.kanstrup@sonymobile.com>
src/drivers/driver_nl80211.c

index 24154b9..9587eb4 100644 (file)
@@ -7017,6 +7017,12 @@ static int nl80211_set_param(void *priv, const char *param)
                drv->force_connect_cmd = 1;
        }
 
+       if (os_strstr(param, "force_bss_selection=1")) {
+               struct i802_bss *bss = priv;
+               struct wpa_driver_nl80211_data *drv = bss->drv;
+               drv->capa.flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
+       }
+
        if (os_strstr(param, "no_offchannel_tx=1")) {
                struct i802_bss *bss = priv;
                struct wpa_driver_nl80211_data *drv = bss->drv;