aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-07-07 08:37:26 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-07-10 15:02:30 -0400
commit3e5d7649a64e558e4146ddfad4dfcf13fc65dd47 (patch)
treefa51725ca07cf682e6694ba5f107d8614d9f0972 /include/net/cfg80211.h
parent2ffa5fede379091bf62a732462b829e4b51af054 (diff)
cfg80211: let SME control reassociation vs. association
Since we don't really know that well in the kernel, let's let the SME control whether it wants to use reassociation or not, by allowing it to give the previous BSSID in the associate() parameters. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index ca986cc91098..71847d3c2640 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -664,10 +664,11 @@ struct cfg80211_auth_request {
664 * @ie_len: Length of ie buffer in octets 664 * @ie_len: Length of ie buffer in octets
665 * @use_mfp: Use management frame protection (IEEE 802.11w) in this association 665 * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
666 * @crypto: crypto settings 666 * @crypto: crypto settings
667 * @prev_bssid: previous BSSID, if not %NULL use reassociate frame
667 */ 668 */
668struct cfg80211_assoc_request { 669struct cfg80211_assoc_request {
669 struct cfg80211_bss *bss; 670 struct cfg80211_bss *bss;
670 const u8 *ie; 671 const u8 *ie, *prev_bssid;
671 size_t ie_len; 672 size_t ie_len;
672 struct cfg80211_crypto_settings crypto; 673 struct cfg80211_crypto_settings crypto;
673 bool use_mfp; 674 bool use_mfp;