aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index b8a76764e1c5..47e30e1d91fe 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -672,6 +672,7 @@ struct cfg80211_auth_request {
672 * @ssid_len: Length of ssid in octets 672 * @ssid_len: Length of ssid in octets
673 * @ie: Extra IEs to add to (Re)Association Request frame or %NULL 673 * @ie: Extra IEs to add to (Re)Association Request frame or %NULL
674 * @ie_len: Length of ie buffer in octets 674 * @ie_len: Length of ie buffer in octets
675 * @use_mfp: Use management frame protection (IEEE 802.11w) in this association
675 */ 676 */
676struct cfg80211_assoc_request { 677struct cfg80211_assoc_request {
677 struct ieee80211_channel *chan; 678 struct ieee80211_channel *chan;
@@ -680,6 +681,7 @@ struct cfg80211_assoc_request {
680 size_t ssid_len; 681 size_t ssid_len;
681 const u8 *ie; 682 const u8 *ie;
682 size_t ie_len; 683 size_t ie_len;
684 bool use_mfp;
683}; 685};
684 686
685/** 687/**