FILS: Add FILS-SK-PFS capability into "GET_CAPABILITY fils" command

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2017-03-13 11:46:30 +02:00
parent 133439b89a
commit 31e130f82c

View file

@ -4175,7 +4175,11 @@ static int wpa_supplicant_ctrl_iface_get_capability(
#ifdef CONFIG_FILS
if (os_strcmp(field, "fils") == 0 &&
(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SUPPORT_FILS)) {
#ifdef CONFIG_FILS_SK_PFS
res = os_snprintf(buf, buflen, "FILS FILS-SK-PFS");
#else /* CONFIG_FILS_SK_PFS */
res = os_snprintf(buf, buflen, "FILS");
#endif /* CONFIG_FILS_SK_PFS */
if (os_snprintf_error(buflen, res))
return -1;
return res;