Browse Source

nl80211: Add support for setting FILS authentication algorithm

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Jouni Malinen 9 years ago
parent
commit
d8f9342d03
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/drivers/driver_nl80211.c

+ 2 - 0
src/drivers/driver_nl80211.c

@@ -3112,6 +3112,8 @@ retry:
 		type = NL80211_AUTHTYPE_FT;
 		type = NL80211_AUTHTYPE_FT;
 	else if (params->auth_alg & WPA_AUTH_ALG_SAE)
 	else if (params->auth_alg & WPA_AUTH_ALG_SAE)
 		type = NL80211_AUTHTYPE_SAE;
 		type = NL80211_AUTHTYPE_SAE;
+	else if (params->auth_alg & WPA_AUTH_ALG_FILS)
+		type = NL80211_AUTHTYPE_FILS_SK;
 	else
 	else
 		goto fail;
 		goto fail;
 	wpa_printf(MSG_DEBUG, "  * Auth Type %d", type);
 	wpa_printf(MSG_DEBUG, "  * Auth Type %d", type);