]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
nl80211: Add support for setting FILS authentication algorithm
authorJouni Malinen <jouni@qca.qualcomm.com>
Fri, 4 Sep 2015 11:59:34 +0000 (14:59 +0300)
committerJouni Malinen <j@w1.fi>
Thu, 27 Oct 2016 12:02:08 +0000 (15:02 +0300)
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
src/drivers/driver_nl80211.c

index 5b2a3476f6890564d3ddc9583b1591cfa2a94f3e..e79413a31291e98b2cb50b08ff9437ea4c2673fd 100644 (file)
@@ -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);