diff options
author | Jouni Malinen <j@w1.fi> | 2012-09-30 12:29:40 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-10-17 05:02:12 -0400 |
commit | 6b8ece3a7031523a05a535761108775b1b67d272 (patch) | |
tree | 3eed867cf7205809de80b22f04ee08ccc5bbe9ea /net/mac80211/main.c | |
parent | e39e5b5e7206767a0f1be0e5cb7acbd0db87ae60 (diff) |
mac80211: Allow station mode SAE to be implemented in user space
SAE uses two rounds of Authentication frames and both rounds require
considerable calculation to be done. This commit extends the existing
station mode authentication request to allow more control for user
space programs to build the SAE fields and to run the authentication
step ones. Only the second round with authentication transaction
sequence 2 will result in moving to authenticated state.
Signed-off-by: Jouni Malinen <j@w1.fi>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 2c8969b67851..473b755b349f 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
@@ -599,6 +599,7 @@ struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len, | |||
599 | wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; | 599 | wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; |
600 | 600 | ||
601 | wiphy->features = NL80211_FEATURE_SK_TX_STATUS | | 601 | wiphy->features = NL80211_FEATURE_SK_TX_STATUS | |
602 | NL80211_FEATURE_SAE | | ||
602 | NL80211_FEATURE_HT_IBSS; | 603 | NL80211_FEATURE_HT_IBSS; |
603 | 604 | ||
604 | if (!ops->set_key) | 605 | if (!ops->set_key) |