From: Jouni Malinen Date: Fri, 4 Sep 2015 11:59:34 +0000 (+0300) Subject: nl80211: Add support for setting FILS authentication algorithm X-Git-Tag: hostap_2_7~2184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8f9342d03b79535e4f81544db11232fdde0c782;p=thirdparty%2Fhostap.git nl80211: Add support for setting FILS authentication algorithm Signed-off-by: Jouni Malinen --- 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);