From d8f9342d03b79535e4f81544db11232fdde0c782 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 4 Sep 2015 14:59:34 +0300 Subject: [PATCH] nl80211: Add support for setting FILS authentication algorithm Signed-off-by: Jouni Malinen --- src/drivers/driver_nl80211.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 5b2a3476f..e79413a31 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -3112,6 +3112,8 @@ retry: type = NL80211_AUTHTYPE_FT; else if (params->auth_alg & WPA_AUTH_ALG_SAE) type = NL80211_AUTHTYPE_SAE; + else if (params->auth_alg & WPA_AUTH_ALG_FILS) + type = NL80211_AUTHTYPE_FILS_SK; else goto fail; wpa_printf(MSG_DEBUG, " * Auth Type %d", type);