atheros: Add support for IEEE 802.11w configuration

This commit is contained in:
Mahesh Palivela 2011-04-08 12:06:27 +03:00 committed by Jouni Malinen
parent 3f3602386e
commit a1ca02927a
3 changed files with 17 additions and 0 deletions

View file

@ -203,6 +203,9 @@ int hostapd_set_drv_ieee8021x(struct hostapd_data *hapd, const char *ifname,
params.wpa_pairwise = hapd->conf->wpa_pairwise;
params.wpa_key_mgmt = hapd->conf->wpa_key_mgmt;
params.rsn_preauth = hapd->conf->rsn_preauth;
#ifdef CONFIG_IEEE80211W
params.ieee80211w = hapd->conf->ieee80211w;
#endif /* CONFIG_IEEE80211W */
}
return hostapd_set_ieee8021x(hapd, &params);
}