Add FT-PSK to GET_CAPABILITY key_mgmt
Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
cdc23db2a6
commit
73f285dad2
1 changed files with 8 additions and 0 deletions
|
@ -3994,6 +3994,14 @@ static int ctrl_iface_get_capability_key_mgmt(int res, char *strict,
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_IEEE80211R */
|
#endif /* CONFIG_IEEE80211R */
|
||||||
#endif /* CONFIG_FILS */
|
#endif /* CONFIG_FILS */
|
||||||
|
#ifdef CONFIG_IEEE80211R
|
||||||
|
if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK) {
|
||||||
|
ret = os_snprintf(pos, end - pos, " FT-PSK");
|
||||||
|
if (os_snprintf_error(end - pos, ret))
|
||||||
|
return pos - buf;
|
||||||
|
pos += ret;
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_IEEE80211R */
|
||||||
#ifdef CONFIG_SAE
|
#ifdef CONFIG_SAE
|
||||||
if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SAE) {
|
if (capa->key_mgmt & WPA_DRIVER_CAPA_KEY_MGMT_SAE) {
|
||||||
ret = os_snprintf(pos, end - pos, " SAE");
|
ret = os_snprintf(pos, end - pos, " SAE");
|
||||||
|
|
Loading…
Reference in a new issue