|
@@ -281,6 +281,14 @@ static int hostapd_set_radius_acl_expire(struct hostapd_data *hapd,
|
|
|
}
|
|
|
|
|
|
|
|
|
+static int hostapd_set_ap_isolate(struct hostapd_data *hapd, int value)
|
|
|
+{
|
|
|
+ if (hapd->driver == NULL || hapd->driver->set_intra_bss == NULL)
|
|
|
+ return 0;
|
|
|
+ return hapd->driver->set_intra_bss(hapd->drv_priv, !value);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
static int hostapd_set_bss_params(struct hostapd_data *hapd,
|
|
|
int use_protection)
|
|
|
{
|
|
@@ -331,6 +339,13 @@ static int hostapd_set_bss_params(struct hostapd_data *hapd,
|
|
|
ret = -1;
|
|
|
}
|
|
|
|
|
|
+ if (hostapd_set_ap_isolate(hapd, hapd->conf->isolate) &&
|
|
|
+ hapd->conf->isolate) {
|
|
|
+ wpa_printf(MSG_ERROR, "Could not enable AP isolation in "
|
|
|
+ "kernel driver");
|
|
|
+ ret = -1;
|
|
|
+ }
|
|
|
+
|
|
|
return ret;
|
|
|
}
|
|
|
|