Browse Source

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

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 8 years ago
parent
commit
31e130f82c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      wpa_supplicant/ctrl_iface.c

+ 4 - 0
wpa_supplicant/ctrl_iface.c

@@ -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;